aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/main.cpp
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-12-28 09:04:32 -0500
committerKen Moore <moorekou@gmail.com>2015-12-28 09:04:32 -0500
commit2797134e512e475a5d4842c36076ef354355eb98 (patch)
tree85845af309ddaf74d35f75b84d5a0662477b9c4e /lumina-desktop/main.cpp
parentFix a bug with the snap session selection when other options were also selected. (diff)
parentMerge pull request #173 from Conan-Kudo/rpmpkgspec (diff)
downloadlumina-2797134e512e475a5d4842c36076ef354355eb98.tar.gz
lumina-2797134e512e475a5d4842c36076ef354355eb98.tar.bz2
lumina-2797134e512e475a5d4842c36076ef354355eb98.zip
Merge branch 'master' of github.com:pcbsd/lumina
Diffstat (limited to 'lumina-desktop/main.cpp')
-rw-r--r--lumina-desktop/main.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/lumina-desktop/main.cpp b/lumina-desktop/main.cpp
index 3602c10e..50ad7ef4 100644
--- a/lumina-desktop/main.cpp
+++ b/lumina-desktop/main.cpp
@@ -70,8 +70,7 @@ int main(int argc, char ** argv)
setenv("DESKTOP_SESSION","Lumina",1);
setenv("XDG_CURRENT_DESKTOP","Lumina",1);
unsetenv("QT_QPA_PLATFORMTHEME"); //causes issues with Lumina themes - not many people have this by default...
- //Startup the Application
- if(DEBUG){ qDebug() << "Session Init:";}
+ //Startup the session
LSession a(argc, argv);
if(!a.isPrimaryProcess()){ return 0; }
//Setup the log file
@@ -95,7 +94,7 @@ int main(int argc, char ** argv)
//LUtils::LoadTranslation(&a, "lumina-desktop");
if(DEBUG){ qDebug() << "Session Setup:" << timer->elapsed(); }
a.setupSession();
-
+ theme.refresh();
if(DEBUG){ qDebug() << "Exec Time:" << timer->elapsed(); delete timer;}
int retCode = a.exec();
//qDebug() << "Stopping the window manager";
bgstack15