diff --git a/src/widgets/osdpretty.cpp b/src/widgets/osdpretty.cpp index 69f3dee09..f130dde0f 100644 --- a/src/widgets/osdpretty.cpp +++ b/src/widgets/osdpretty.cpp @@ -341,7 +341,6 @@ void OSDPretty::mouseMoveEvent(QMouseEvent* e) { // Snap to center int snap_x = geometry.center().x() - width() / 2; - qDebug() << snap_x << new_pos.x(); if (new_pos.x() > snap_x - kSnapProximity && new_pos.x() < snap_x + kSnapProximity) { new_pos.setX(snap_x); }