summaryrefslogtreecommitdiffstats
path: root/application/MultiMC.cpp
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2016-11-01 08:50:23 +0100
committerPetr Mrázek <peterix@gmail.com>2016-11-01 09:04:37 +0100
commit2e0a45cc2f7b3b3b84d72905bb4217bc1cffbf85 (patch)
treede72c629b91b29ad274091101e5baf2f36ec3fed /application/MultiMC.cpp
parentfe68d5946073d92bc585b2b5372c420218807c91 (diff)
downloadMultiMC-2e0a45cc2f7b3b3b84d72905bb4217bc1cffbf85.tar
MultiMC-2e0a45cc2f7b3b3b84d72905bb4217bc1cffbf85.tar.gz
MultiMC-2e0a45cc2f7b3b3b84d72905bb4217bc1cffbf85.tar.lz
MultiMC-2e0a45cc2f7b3b3b84d72905bb4217bc1cffbf85.tar.xz
MultiMC-2e0a45cc2f7b3b3b84d72905bb4217bc1cffbf85.zip
NOISSUE add bright theme to complement the dark theme
Same style, different colors.
Diffstat (limited to 'application/MultiMC.cpp')
-rw-r--r--application/MultiMC.cpp2
1 files changed, 2 insertions, 0 deletions
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 <iostream>
#include <QDir>
@@ -1010,6 +1011,7 @@ void MultiMC::initThemes()
};
insertTheme(new SystemTheme());
insertTheme(new DarkTheme());
+ insertTheme(new BrightTheme());
}
void MultiMC::setApplicationTheme(const QString& name)