Skip to content

Commit

Permalink
feat: add freesm theme to ThemeManager
Browse files Browse the repository at this point in the history
  • Loading branch information
notwindstone committed Jul 12, 2024
1 parent 36bead5 commit 34b0e6d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions launcher/ui/themes/ThemeManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
#include <QStyleFactory>
#include "Exception.h"
#include "ui/themes/BrightTheme.h"
#include "ui/themes/FreesmTheme.h"
#include "ui/themes/CatPack.h"
#include "ui/themes/CustomTheme.h"
#include "ui/themes/DarkTheme.h"
Expand Down Expand Up @@ -131,6 +132,7 @@ void ThemeManager::initializeWidgets()
auto darkThemeId = addTheme(std::make_unique<DarkTheme>());
themeDebugLog() << "Loading Built-in Theme:" << darkThemeId;
themeDebugLog() << "Loading Built-in Theme:" << addTheme(std::make_unique<BrightTheme>());
themeDebugLog() << "Loading Built-in Theme:" << addTheme(std::make_unique<FreesmTheme>());

themeDebugLog() << "<> Initializing System Widget Themes";
QStringList styles = QStyleFactory::keys();
Expand Down

0 comments on commit 34b0e6d

Please sign in to comment.