Skip to content

Commit cf11852

Browse files
committed
Remove debugging logging
Signed-off-by: Aleksandr Motsjonov <[email protected]>
1 parent 1c29aef commit cf11852

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/iv/ivgl.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1326,7 +1326,6 @@ IvGL::wheelEvent(QWheelEvent* event)
13261326
{
13271327
m_mouse_activation = false;
13281328
QPoint angdelta = event->angleDelta() / 8; // div by 8 to get degrees
1329-
std::cerr << "angdelta.y() " << angdelta.y() << " angdelta.x() " << angdelta.x() << "\n";
13301329
if (abs(angdelta.y()) > abs(angdelta.x()) // predominantly vertical
13311330
&& abs(angdelta.y()) > 2) { // suppress tiny motions
13321331
if (angdelta.y() > 0) {

0 commit comments

Comments
 (0)