From 63f4ad7612e87554aa3bdb92edbedeeeee81a7d2 Mon Sep 17 00:00:00 2001 From: Dawn Date: Thu, 13 Aug 2026 10:29:14 +0200 Subject: [PATCH] chore: name the bluebird theme in menu the default theme --- src/aare/gui/main_window.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/aare/gui/main_window.py b/src/aare/gui/main_window.py index ac34b442..ad3a4a79 100644 --- a/src/aare/gui/main_window.py +++ b/src/aare/gui/main_window.py @@ -1910,7 +1910,7 @@ class MainWindow(QMainWindow): self._theme_action_group = QActionGroup(self) self._theme_action_group.setExclusive(True) - self._use_legacy_theme_action = QAction("Sunrise Theme (default)", self) + self._use_legacy_theme_action = QAction("Sunrise Theme", self) self._use_legacy_theme_action.setCheckable(True) self._use_legacy_theme_action.setChecked(self._theme_mode == THEME_SUNRISE) self._use_legacy_theme_action.triggered.connect(self.use_legacy_theme) @@ -1922,7 +1922,7 @@ class MainWindow(QMainWindow): self._use_portrait_theme_action.triggered.connect(self.use_portrait_theme) self._theme_action_group.addAction(self._use_portrait_theme_action) - self._use_bluebird_theme_action = QAction("Bluebird Theme", self) + self._use_bluebird_theme_action = QAction("Bluebird Theme (default)", self) self._use_bluebird_theme_action.setCheckable(True) self._use_bluebird_theme_action.setChecked(self._theme_mode == THEME_BLUEBIRD) self._use_bluebird_theme_action.triggered.connect(self.use_bluebird_theme)