aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop
diff options
context:
space:
mode:
Diffstat (limited to 'lumina-desktop')
-rw-r--r--lumina-desktop/LDesktop.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lumina-desktop/LDesktop.cpp b/lumina-desktop/LDesktop.cpp
index 21372bf1..7f9b40d3 100644
--- a/lumina-desktop/LDesktop.cpp
+++ b/lumina-desktop/LDesktop.cpp
@@ -200,10 +200,10 @@ void LDesktop::InitDesktop(){
//Start the update processes
QTimer::singleShot(10,this, SLOT(UpdateMenu()) );
QTimer::singleShot(0,this, SLOT(UpdateBackground()) );
- //QTimer::singleShot(1,this, SLOT(UpdateDesktop()) );
- //QTimer::singleShot(2,this, SLOT(UpdatePanels()) );
- UpdatePanels();
- UpdateDesktop();
+ QTimer::singleShot(1,this, SLOT(UpdateDesktop()) );
+ QTimer::singleShot(2,this, SLOT(UpdatePanels()) );
+ //UpdatePanels();
+ //UpdateDesktop();
//checkResolution();
}
bgstack15