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 ee57550909
commit 6df8dc58dc

View File

@ -88,7 +88,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()