Fallback to regular spaces between icons and text

This commit is contained in:
lm 2025-10-17 15:39:46 +02:00
parent 67287a8fe0
commit 3212e3c64f
1 changed files with 1 additions and 1 deletions

View File

@ -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)