Fallback to regular spaces between icons and text
This commit is contained in:
parent
67287a8fe0
commit
3212e3c64f
|
|
@ -32,7 +32,7 @@ class UIBuilderMixin:
|
||||||
buttons_frame = ttk.Frame(toolbar)
|
buttons_frame = ttk.Frame(toolbar)
|
||||||
buttons_frame.pack(side=tk.LEFT)
|
buttons_frame.pack(side=tk.LEFT)
|
||||||
for icon, label, command in buttons:
|
for icon, label, command in buttons:
|
||||||
text = f"{icon}\u00a0{label}"
|
text = f"{icon} {label}"
|
||||||
self._add_toolbar_button(buttons_frame, text, command)
|
self._add_toolbar_button(buttons_frame, text, command)
|
||||||
|
|
||||||
status_container = ttk.Frame(toolbar)
|
status_container = ttk.Frame(toolbar)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue