Oops, remove debug output

This commit is contained in:
David Sansome 2010-12-19 14:22:47 +00:00
parent a348a4529d
commit eb61b67dd1
1 changed files with 0 additions and 1 deletions

View File

@ -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);
}