summaryrefslogtreecommitdiffstats
path: root/logic
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2014-10-26 23:44:20 +0100
committerPetr Mrázek <peterix@gmail.com>2014-10-26 23:44:20 +0100
commit8f7aec032b11a2e2b3034c9d9719a74726dad130 (patch)
tree607355469c2305aca17e40af49d85f0365c30f4f /logic
parent92560bf0cd8bab77405081f30711a32282e29ba2 (diff)
downloadMultiMC-8f7aec032b11a2e2b3034c9d9719a74726dad130.tar
MultiMC-8f7aec032b11a2e2b3034c9d9719a74726dad130.tar.gz
MultiMC-8f7aec032b11a2e2b3034c9d9719a74726dad130.tar.lz
MultiMC-8f7aec032b11a2e2b3034c9d9719a74726dad130.tar.xz
MultiMC-8f7aec032b11a2e2b3034c9d9719a74726dad130.zip
Add dark, light, blue and colored theme from pe.
Replaces the old dark and light themes
Diffstat (limited to 'logic')
-rw-r--r--logic/LegacyInstance.cpp4
-rw-r--r--logic/OneSixInstance.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/logic/LegacyInstance.cpp b/logic/LegacyInstance.cpp
index eede7070..47fc3eb9 100644
--- a/logic/LegacyInstance.cpp
+++ b/logic/LegacyInstance.cpp
@@ -53,9 +53,9 @@ QList<BasePage *> LegacyInstance::getPages()
// FIXME: actually implement the legacy instance upgrade, then enable this.
//values.append(new LegacyUpgradePage(this));
values.append(new LegacyJarModPage(this));
- values.append(new ModFolderPage(this, loaderModList(), "mods", "plugin-blue", tr("Loader mods"),
+ values.append(new ModFolderPage(this, loaderModList(), "mods", "loadermods", tr("Loader mods"),
"Loader-mods"));
- values.append(new ModFolderPage(this, coreModList(), "coremods", "plugin-green", tr("Core mods"),
+ values.append(new ModFolderPage(this, coreModList(), "coremods", "coremods", tr("Core mods"),
"Core-mods"));
values.append(new TexturePackPage(this));
values.append(new NotesPage(this));
diff --git a/logic/OneSixInstance.cpp b/logic/OneSixInstance.cpp
index 00d8a9db..fcfe4ac3 100644
--- a/logic/OneSixInstance.cpp
+++ b/logic/OneSixInstance.cpp
@@ -64,9 +64,9 @@ QList<BasePage *> OneSixInstance::getPages()
{
QList<BasePage *> values;
values.append(new VersionPage(this));
- values.append(new ModFolderPage(this, loaderModList(), "mods", "plugin-blue",
+ values.append(new ModFolderPage(this, loaderModList(), "mods", "loadermods",
tr("Loader mods"), "Loader-mods"));
- values.append(new CoreModFolderPage(this, coreModList(), "coremods", "plugin-green",
+ values.append(new CoreModFolderPage(this, coreModList(), "coremods", "coremods",
tr("Core mods"), "Core-mods"));
values.append(new ResourcePackPage(this));
values.append(new TexturePackPage(this));