From f0df74f248138644e0c9fbcc83962ddab544588c Mon Sep 17 00:00:00 2001 From: RichardG867 Date: Wed, 14 Apr 2021 16:29:43 -0300 Subject: [PATCH] Fix ISABugger and POST card persisting after being disabled --- src/win/win_stbar.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/win/win_stbar.c b/src/win/win_stbar.c index 34ccb4886..ea7be0212 100644 --- a/src/win/win_stbar.c +++ b/src/win/win_stbar.c @@ -426,6 +426,11 @@ StatusBarDestroyTips(void) void ui_sb_set_ready(int ready) { + if (ready == 0) { + ui_sb_bugui(NULL); + ui_sb_set_text(NULL); + } + sb_ready = ready; }