aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/BootSplash.cpp
diff options
context:
space:
mode:
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