aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core-utils/lumina-config/main.cpp
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-06-27 20:53:48 -0400
committerKen Moore <moorekou@gmail.com>2016-06-27 20:53:48 -0400
commite630667a18729e9b4f37c83fbbc4afc2fdd562dd (patch)
tree160d87425f4bef97259606c0f39ce4d260f2b7a9 /src-qt5/core-utils/lumina-config/main.cpp
parentSwitch back to the old UI for now. (diff)
downloadlumina-e630667a18729e9b4f37c83fbbc4afc2fdd562dd.tar.gz
lumina-e630667a18729e9b4f37c83fbbc4afc2fdd562dd.tar.bz2
lumina-e630667a18729e9b4f37c83fbbc4afc2fdd562dd.zip
Get the new fluxbox-keys page all converted over to the new UI.
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 a63e0fbe..20d517b2 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