From 6df8dc58dccdd69511fba4bef36fd7834d507738 Mon Sep 17 00:00:00 2001 From: Aaron Seigo Date: Tue, 16 Aug 2011 16:22:16 +0200 Subject: [PATCH] small change that makes a huge visible difference also removes the unneeded ternary op given the above if() --- dialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dialog.cpp b/dialog.cpp index 4f8e6226a..aa48a6778 100644 --- a/dialog.cpp +++ b/dialog.cpp @@ -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()