From a4b249ddf91d3c78cb28f4c2ac867dcc980d463f Mon Sep 17 00:00:00 2001 From: lm Date: Fri, 17 Oct 2025 15:12:04 +0200 Subject: [PATCH] Update window title to drop ICRA acronym --- app/app.py | 2 +- app/gui/ui.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/app.py b/app/app.py index 33fa237..0cf0bcf 100644 --- a/app/app.py +++ b/app/app.py @@ -20,7 +20,7 @@ class ICRAApp( def __init__(self, root: tk.Tk): self.root = root - self.root.title("ICRA — Interactive Color Range Analyzer") + self.root.title("Interactive Color Range Analyzer") self._setup_window() # Theme and styling diff --git a/app/gui/ui.py b/app/gui/ui.py index 80842a7..4c51f1e 100644 --- a/app/gui/ui.py +++ b/app/gui/ui.py @@ -375,7 +375,7 @@ class UIBuilderMixin: title_label = tk.Label( title_bar, - text="ICRA — Interactive Color Range Analyzer", + text="Interactive Color Range Analyzer", bg=bar_bg, fg="#f5f5f5", font=("Segoe UI", 11, "bold"),