diff --git a/src/qt/window.cpp b/src/qt/window.cpp index cbdde20830..12bcf2cfc0 100644 --- a/src/qt/window.cpp +++ b/src/qt/window.cpp @@ -548,9 +548,9 @@ void wxWindowQt::Update() // send the paint event to the inner widget in scroll areas: if ( QtGetScrollBarsContainer() ) { - QtGetScrollBarsContainer()->viewport()->update(); + QtGetScrollBarsContainer()->viewport()->repaint(); } else { - GetHandle()->update(); + GetHandle()->repaint(); } }