diff options
-rw-r--r-- | gui/newgui.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gui/newgui.cpp b/gui/newgui.cpp index c7ebf170ed..4ad9ef45e6 100644 --- a/gui/newgui.cpp +++ b/gui/newgui.cpp @@ -162,8 +162,6 @@ void NewGui::runLoop() { } while (!_dialogStack.empty() && activeDialog == _dialogStack.top()) { - activeDialog->handleTickle(); - if (_needRedraw) { // Restore the overlay to its initial state, then draw all dialogs. // This is necessary to get the blending right. @@ -188,6 +186,11 @@ void NewGui::runLoop() { _needRedraw = false; } + // Don't "tickle" the dialog until the theme has had a chance + // to re-allocate buffers in case of a scaler change. + + activeDialog->handleTickle(); + if (useStandardCurs) animateCursor(); _theme->drawAll(); |