small change that makes a huge visible difference

also removes the unneeded ternary op given the above if()
This commit is contained in:
Aaron Seigo 2011-08-16 16:22:16 +02:00
parent 7cf7bea6c2
commit d82144b609

View File

@ -89,7 +89,7 @@ void DialogPrivate::scheduleBorderCheck(bool triggeredByResize)
QObject::connect(moveTimer, SIGNAL(timeout()), q, SLOT(checkBorders()));
}
moveTimer->start(triggeredByResize ? 0 : 200);
moveTimer->start(0);
}
void DialogPrivate::themeChanged()