From 2e0a45cc2f7b3b3b84d72905bb4217bc1cffbf85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Tue, 1 Nov 2016 08:50:23 +0100 Subject: NOISSUE add bright theme to complement the dark theme Same style, different colors. --- application/MultiMC.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'application/MultiMC.cpp') diff --git a/application/MultiMC.cpp b/application/MultiMC.cpp index a20666ca..6c284b35 100644 --- a/application/MultiMC.cpp +++ b/application/MultiMC.cpp @@ -14,6 +14,7 @@ #include "themes/ITheme.h" #include "themes/SystemTheme.h" #include "themes/DarkTheme.h" +#include "themes/BrightTheme.h" #include #include @@ -1010,6 +1011,7 @@ void MultiMC::initThemes() }; insertTheme(new SystemTheme()); insertTheme(new DarkTheme()); + insertTheme(new BrightTheme()); } void MultiMC::setApplicationTheme(const QString& name) -- cgit v1.2.3