small change that makes a huge visible difference
also removes the unneeded ternary op given the above if()
This commit is contained in:
parent
ee57550909
commit
6df8dc58dc
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user