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