aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core-utils/lumina-config/main.cpp
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-06-27 15:43:16 -0400
committerKen Moore <moorekou@gmail.com>2016-06-27 15:43:16 -0400
commitc91c9c6b92eeb8293ca4cd5d7fee155de50a7fbc (patch)
tree8de8b25128723e67c64c91e56305d4d7fefe8828 /src-qt5/core-utils/lumina-config/main.cpp
parentGet the default apps page all converted over to the new UI. (diff)
downloadlumina-c91c9c6b92eeb8293ca4cd5d7fee155de50a7fbc.tar.gz
lumina-c91c9c6b92eeb8293ca4cd5d7fee155de50a7fbc.tar.bz2
lumina-c91c9c6b92eeb8293ca4cd5d7fee155de50a7fbc.zip
Switch back to the old UI for now.
Diffstat (limited to 'src-qt5/core-utils/lumina-config/main.cpp')
-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