From bcf8bf963e830348c916d8f6e50f0ccbfeda9cb4 Mon Sep 17 00:00:00 2001 From: Celtic Minstrel Date: Mon, 10 Mar 2025 22:48:09 -0400 Subject: [PATCH] Show road to the right of the toolbar when the road tool is active, like what happens with other field types. --- src/scenedit/scen.graphics.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/scenedit/scen.graphics.cpp b/src/scenedit/scen.graphics.cpp index dad06967..234adcea 100644 --- a/src/scenedit/scen.graphics.cpp +++ b/src/scenedit/scen.graphics.cpp @@ -1554,6 +1554,9 @@ void place_location() { } else if(overall_mode == MODE_PLACE_SFX) { draw_field = true; source_rect = calc_rect(mode_count, 3); + } else if(overall_mode == MODE_TOGGLE_ROAD) { + draw_field = true; + source_rect = calc_rect(0, 2); } if(draw_field) { const sf::Texture& fields_gworld = *ResMgr::graphics.get("fields");