Skip to content

Commit ac4b084

Browse files
authored
Merge master into release
2 parents 091d58a + e7fb0e5 commit ac4b084

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/gui/main_window.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,10 @@ void MainWindow::showStatusBarMessage(const QString& text, int timeout)
533533
void MainWindow::showStatusBarMessageImmediately(const QString& text, int timeout)
534534
{
535535
showStatusBarMessage(text, timeout);
536-
QApplication::processEvents(QEventLoop::ExcludeUserInputEvents, 10 /* ms */);
536+
// Make sure that paint events reach the user screen, by processing events
537+
// until the queue is empty, including events appended during processing.
538+
// In the worst case, this will stop after 100 ms.
539+
QApplication::processEvents(QEventLoop::ExcludeUserInputEvents, 100 /* ms */);
537540
}
538541

539542
void MainWindow::clearStatusBarMessage()

0 commit comments

Comments
 (0)