Skip to content

Commit

Permalink
fix statusbar message (#2056)
Browse files Browse the repository at this point in the history
  • Loading branch information
ts-korhonen committed Feb 7, 2022
1 parent cbd0415 commit b73d8f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qt/qt_ui.cpp
Expand Up @@ -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) {
Expand Down

0 comments on commit b73d8f4

Please sign in to comment.