From 382bccaedd20b6eabfd107738850835f77b9c966 Mon Sep 17 00:00:00 2001 From: lm Date: Fri, 17 Oct 2025 16:01:21 +0200 Subject: [PATCH] Show selected colour swatch and adjust labels for themes --- app/gui/ui.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/gui/ui.py b/app/gui/ui.py index 44803b9..3ff8018 100644 --- a/app/gui/ui.py +++ b/app/gui/ui.py @@ -58,7 +58,9 @@ class UIBuilderMixin: bd=0, ) self.current_colour_sw.pack(side=tk.LEFT, padx=(0, 8), pady=2) - ttk.Label(palette_frame, text="Aktuelle Farbe | Beispielfarben:").pack(side=tk.LEFT, padx=(0, 8)) + self.current_colour_label = ttk.Label(palette_frame, text="Aktuelle Farbe") + self.current_colour_label.pack(side=tk.LEFT, padx=(0, 8)) + ttk.Label(palette_frame, text="Beispielfarben:").pack(side=tk.LEFT, padx=(0, 8)) swatch_container = ttk.Frame(palette_frame) swatch_container.pack(side=tk.LEFT) for name, hex_code in self._preset_colours():