diff options
author | Ken Moore <ken@pcbsd.org> | 2015-05-23 07:51:47 -0400 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2015-05-23 07:51:47 -0400 |
commit | 069ca77ea9f01c0c7adbbce10ca2767615445452 (patch) | |
tree | 5bccd22f69904cc99df82a8a19030d097cb26ea7 /lumina-desktop/LSession.cpp | |
parent | Fix the random issue with desktop crashes when removing a desktop plugin (onl... (diff) | |
download | lumina-069ca77ea9f01c0c7adbbce10ca2767615445452.tar.gz lumina-069ca77ea9f01c0c7adbbce10ca2767615445452.tar.bz2 lumina-069ca77ea9f01c0c7adbbce10ca2767615445452.zip |
Add a new "phase" into the boot splash - system applications loading.
Diffstat (limited to 'lumina-desktop/LSession.cpp')
-rw-r--r-- | lumina-desktop/LSession.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lumina-desktop/LSession.cpp b/lumina-desktop/LSession.cpp index 59e6fe57..fd2b16b3 100644 --- a/lumina-desktop/LSession.cpp +++ b/lumina-desktop/LSession.cpp @@ -115,10 +115,11 @@ void LSession::setupSession(){ //Initialize the global menus qDebug() << " - Initialize system menus"; - splash.showScreen("menus"); + splash.showScreen("apps"); if(DEBUG){ qDebug() << " - Init AppMenu:" << timer->elapsed();} appmenu = new AppMenu(); if(DEBUG){ qDebug() << " - Init SettingsMenu:" << timer->elapsed();} + splash.showScreen("menus"); settingsmenu = new SettingsMenu(); if(DEBUG){ qDebug() << " - Init SystemWindow:" << timer->elapsed();} sysWindow = new SystemWindow(); |