From 06930e30d423f5f66fa2aab6fbc9a02043d9a3fd Mon Sep 17 00:00:00 2001 From: Celtic Minstrel Date: Sat, 26 Sep 2015 14:17:05 -0400 Subject: [PATCH] Scenario Editor: Redraw screen after a menu command --- src/scenedit/scen.main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scenedit/scen.main.cpp b/src/scenedit/scen.main.cpp index 9e2a8446..8bf1980f 100644 --- a/src/scenedit/scen.main.cpp +++ b/src/scenedit/scen.main.cpp @@ -419,7 +419,6 @@ void handle_menu_choice(eMenu item_hit) { case eMenu::SCEN_TEXT_DUMP: if(cChoiceDlog("text-dump-confirm", {"okay", "cancel"}).show() == "okay") scen_text_dump(); - redraw_screen(); break; case eMenu::TOWN_DETAILS: edit_town_details(); @@ -553,6 +552,7 @@ void handle_menu_choice(eMenu item_hit) { } if(isHelp) cChoiceDlog(helpDlog).show(); + redraw_screen(); } // This is here to try and fix a major graphical bug while scrolling on WINE