aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-fm
diff options
context:
space:
mode:
Diffstat (limited to 'src-qt5/desktop-utils/lumina-fm')
-rw-r--r--src-qt5/desktop-utils/lumina-fm/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src-qt5/desktop-utils/lumina-fm/main.cpp b/src-qt5/desktop-utils/lumina-fm/main.cpp
index c72f031e..61d2dc95 100644
--- a/src-qt5/desktop-utils/lumina-fm/main.cpp
+++ b/src-qt5/desktop-utils/lumina-fm/main.cpp
@@ -18,7 +18,7 @@ int main(int argc, char ** argv)
if( !a.isPrimaryProcess()){ return 0; }
qDebug() << "Loaded QApplication";
a.setApplicationName("Insight File Manager");
- LuminaThemeEngine themes(&a);
+ //LuminaThemeEngine themes(&a);
//Get the list of inputs for the initial load
QStringList in = a.inputlist; //has fixes for relative paths and such
@@ -26,7 +26,7 @@ int main(int argc, char ** argv)
//Start the UI
MainUI w;
QObject::connect(&a, SIGNAL(InputsAvailable(QStringList)), &w, SLOT(slotSingleInstance(QStringList)) );
- QObject::connect(&themes, SIGNAL(updateIcons()), &w, SLOT(setupIcons()) );
+ //QObject::connect(&themes, SIGNAL(updateIcons()), &w, SLOT(setupIcons()) );
w.OpenDirs(in);
w.show();
bgstack15