We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c29aef commit cf11852Copy full SHA for cf11852
src/iv/ivgl.cpp
@@ -1326,7 +1326,6 @@ IvGL::wheelEvent(QWheelEvent* event)
1326
{
1327
m_mouse_activation = false;
1328
QPoint angdelta = event->angleDelta() / 8; // div by 8 to get degrees
1329
- std::cerr << "angdelta.y() " << angdelta.y() << " angdelta.x() " << angdelta.x() << "\n";
1330
if (abs(angdelta.y()) > abs(angdelta.x()) // predominantly vertical
1331
&& abs(angdelta.y()) > 2) { // suppress tiny motions
1332
if (angdelta.y() > 0) {
0 commit comments