diff options
author | Redson <redson@riseup.net> | 2022-11-17 06:39:05 -0300 |
---|---|---|
committer | Redson <redson@riseup.net> | 2022-11-17 06:39:05 -0300 |
commit | f72ac94c111a788d197e78fd4e0433513965807a (patch) | |
tree | eb228bb7949efe137e8cac56fa0c28b3400b822a | |
parent | bd3a693e700bc0b1ea9bbc72631ccd13ba755277 (diff) | |
download | PrismLauncher-f72ac94c111a788d197e78fd4e0433513965807a.tar.gz PrismLauncher-f72ac94c111a788d197e78fd4e0433513965807a.tar.bz2 PrismLauncher-f72ac94c111a788d197e78fd4e0433513965807a.zip |
fix: Fix usage below
Signed-off-by: Redson <redson@riseup.net>
-rw-r--r-- | launcher/ui/MainWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/ui/MainWindow.cpp b/launcher/ui/MainWindow.cpp index dcf1be99..e1ea13d3 100644 --- a/launcher/ui/MainWindow.cpp +++ b/launcher/ui/MainWindow.cpp @@ -1322,7 +1322,7 @@ void MainWindow::updateThemeMenu() if (APPLICATION->settings()->get("ApplicationTheme").toString() == theme->id()) { themeAction->setChecked(true); } - themeAction->setActionGroup(ThemesGroup); + themeAction->setActionGroup(themesGroup); connect(themeAction, &QAction::triggered, [theme]() { APPLICATION->setApplicationTheme(theme->id(),false); |