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)