From f9e2dd84c378fcc3cfbca6f758c6a16f790a0678 Mon Sep 17 00:00:00 2001 From: lm Date: Fri, 17 Oct 2025 17:20:39 +0200 Subject: [PATCH] Change free-draw toolbar icon Use a simple triangle glyph so the button spacing matches while hinting at arbitrary shape drawing. --- app/gui/ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/gui/ui.py b/app/gui/ui.py index d04b3f6..f24a2ab 100644 --- a/app/gui/ui.py +++ b/app/gui/ui.py @@ -22,7 +22,7 @@ class UIBuilderMixin: ("๐ŸŽจ", self._t("toolbar.choose_color"), self.choose_color), ("๐Ÿ–ฑ", self._t("toolbar.pick_from_image"), self.enable_pick_mode), ("๐Ÿ’พ", self._t("toolbar.save_overlay"), self.save_overlay), - ("โœ", self._t("toolbar.toggle_free_draw"), self.toggle_exclusion_mode), + ("โ–ณ", self._t("toolbar.toggle_free_draw"), self.toggle_exclusion_mode), ("๐Ÿงน", self._t("toolbar.clear_excludes"), self.clear_excludes), ("โ†ฉ", self._t("toolbar.undo_exclude"), self.undo_exclude), ("๐Ÿ”„", self._t("toolbar.reset_sliders"), self.reset_sliders),