From 3212e3c64f42b63c56549463ac9cf3b223336b42 Mon Sep 17 00:00:00 2001 From: lm Date: Fri, 17 Oct 2025 15:39:46 +0200 Subject: [PATCH] Fallback to regular spaces between icons and text --- 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 5aaf6fc..742c443 100644 --- a/app/gui/ui.py +++ b/app/gui/ui.py @@ -32,7 +32,7 @@ class UIBuilderMixin: buttons_frame = ttk.Frame(toolbar) buttons_frame.pack(side=tk.LEFT) for icon, label, command in buttons: - text = f"{icon}\u00a0{label}" + text = f"{icon} {label}" self._add_toolbar_button(buttons_frame, text, command) status_container = ttk.Frame(toolbar)