Trim current colour label text

This commit is contained in:
lm 2025-10-17 16:13:01 +02:00
parent b4b6fa4e87
commit 76073ab0b5
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ class ColorPickerMixin:
pass
if hasattr(self, "current_colour_label"):
try:
self.current_colour_label.configure(text=f"Aktuelle Farbe ({hex_colour})")
self.current_colour_label.configure(text=f"({hex_colour})")
except Exception:
pass