From a30eb997b1ab6f4ba4252e4bf8c07317503ac694 Mon Sep 17 00:00:00 2001 From: lm Date: Fri, 17 Oct 2025 17:39:23 +0200 Subject: [PATCH] Swap open-image icon Replace the puzzle glyph with a framed picture to better represent single-image loading. --- 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 314e053..9ca82e4 100644 --- a/app/gui/ui.py +++ b/app/gui/ui.py @@ -17,7 +17,7 @@ class UIBuilderMixin: toolbar = ttk.Frame(self.root) toolbar.pack(fill=tk.X, padx=12, pady=(4, 2)) buttons = [ - ("🧩", self._t("toolbar.open_image"), self.load_image), + ("🖼", self._t("toolbar.open_image"), self.load_image), ("📂", self._t("toolbar.open_folder"), self.load_folder), ("🎨", self._t("toolbar.choose_color"), self.choose_color), ("🖱", self._t("toolbar.pick_from_image"), self.enable_pick_mode),