From c21b0b8de7c327a25e4ffcd98172cb98414efee1 Mon Sep 17 00:00:00 2001 From: Celtic Minstrel Date: Sun, 18 Feb 2018 16:26:10 -0500 Subject: [PATCH] Fix #155 --- src/scenedit/scen.actions.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/scenedit/scen.actions.cpp b/src/scenedit/scen.actions.cpp index eea18d29..83142f13 100644 --- a/src/scenedit/scen.actions.cpp +++ b/src/scenedit/scen.actions.cpp @@ -1291,13 +1291,12 @@ static bool handle_toolpal_action(location cur_point2) { break; case PAL_RECT_HOLLOW: overall_mode = MODE_HOLLOW_RECT; + set_string("Fill rectangle (hollow)","Select upper left corner"); if(false) // Skip next statement case PAL_RECT_FILLED: - overall_mode = MODE_FILLED_RECT; + overall_mode = MODE_FILLED_RECT, + set_string("Fill rectangle (solid)","Select upper left corner"); mode_count = 2; - if(i == 6) - set_string("Fill rectangle (hollow)","Select upper left corner"); - else set_string("Fill rectangle (solid)","Select upper left corner"); break; case PAL_BUCKET: overall_mode = MODE_FLOOD_FILL;