From b73d8f4c2fdba105d46e8e0a64b72e91fdeca9b4 Mon Sep 17 00:00:00 2001 From: Teemu Korhonen <80648513+ts-korhonen@users.noreply.github.com> Date: Mon, 7 Feb 2022 19:19:00 +0200 Subject: [PATCH] fix statusbar message (#2056) --- src/qt/qt_ui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/qt_ui.cpp b/src/qt/qt_ui.cpp index b3150a0ec..3e71d13d9 100644 --- a/src/qt/qt_ui.cpp +++ b/src/qt/qt_ui.cpp @@ -99,7 +99,7 @@ int ui_msgbox(int flags, void *message) { } void ui_sb_update_text() { - main_window->statusBar()->showMessage(sb_text.isEmpty() ? sb_buguitext : sb_text); + emit main_window->statusBarMessage(sb_text.isEmpty() ? sb_buguitext : sb_text); } void ui_sb_set_text_w(wchar_t *wstr) {