aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/BootSplash.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-05-23 08:32:46 -0400
committerKen Moore <ken@pcbsd.org>2015-05-23 08:32:46 -0400
commitfc983d2bae83a8805352e7ad274273b896d0e7b8 (patch)
tree15b3a013dd6c62217aeaca742e610529bd0bba03 /lumina-desktop/BootSplash.cpp
parentRemove the extra bootsplash show between the apps/settings menu initializatio... (diff)
downloadlumina-fc983d2bae83a8805352e7ad274273b896d0e7b8.tar.gz
lumina-fc983d2bae83a8805352e7ad274273b896d0e7b8.tar.bz2
lumina-fc983d2bae83a8805352e7ad274273b896d0e7b8.zip
Move the desktop initialization after the menu's initialization. With all teh additional process events calls the menus needs to be ready before desktop elements start trying to use them.
Diffstat (limited to 'lumina-desktop/BootSplash.cpp')
-rw-r--r--lumina-desktop/BootSplash.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/lumina-desktop/BootSplash.cpp b/lumina-desktop/BootSplash.cpp
index 5ac45a32..e8502647 100644
--- a/lumina-desktop/BootSplash.cpp
+++ b/lumina-desktop/BootSplash.cpp
@@ -29,15 +29,15 @@ void BootSplash::showScreen(QString loading){ //update icon, text, and progress
}else if(loading=="wm"){
txt = tr("Starting Window Manager..."); per = 50;
icon = "preferences-system-windows-actions";
- }else if(loading=="desktop"){
- txt = tr("Initializing Desktop(s)..."); per = 60;
- icon = "preferences-desktop-wallpaper";
}else if(loading=="apps"){
- txt = tr("Detecting System Applications..."); per = 70;
+ txt = tr("Detecting System Applications..."); per = 60;
icon = "preferences-desktop-icons";
}else if(loading=="menus"){
- txt = tr("Initializing System Menu(s)..."); per = 80;
+ txt = tr("Initializing System Menu(s)..."); per = 70;
icon = "preferences-system-windows";
+ }else if(loading=="desktop"){
+ txt = tr("Initializing Desktop(s)..."); per = 80;
+ icon = "preferences-desktop-wallpaper";
}else if(loading=="final"){
txt = tr("Performing Final Checks..."); per = 90;
icon = "pcbsd";
bgstack15