aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-06-27 23:10:51 -0400
committerKen Moore <moorekou@gmail.com>2016-06-27 23:10:51 -0400
commit6eca90c6691a4b215406df0d4fc087c376020eb6 (patch)
tree9ed8f1cda5d943b2c259e3bad84670f225e7bf63
parentGet the new menu interface page converted over. (diff)
downloadlumina-6eca90c6691a4b215406df0d4fc087c376020eb6.tar.gz
lumina-6eca90c6691a4b215406df0d4fc087c376020eb6.tar.bz2
lumina-6eca90c6691a4b215406df0d4fc087c376020eb6.zip
Re-enable the old UI - only 2 more pages left to convert before switching to the new interface completely.
-rw-r--r--src-qt5/core-utils/lumina-config/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src-qt5/core-utils/lumina-config/main.cpp b/src-qt5/core-utils/lumina-config/main.cpp
index 20d517b2..a63e0fbe 100644
--- a/src-qt5/core-utils/lumina-config/main.cpp
+++ b/src-qt5/core-utils/lumina-config/main.cpp
@@ -19,8 +19,8 @@ int main(int argc, char ** argv)
LuminaThemeEngine theme(&a);
- //MainUI w;
- mainWindow w;
+ MainUI w;
+ //mainWindow w;
QObject::connect(&a, SIGNAL(InputsAvailable(QStringList)), &w, SLOT(slotSingleInstance()) );
QObject::connect(&theme, SIGNAL(updateIcons()), &w, SLOT(setupIcons()) );
w.show();
bgstack15