aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-04-24 19:00:16 -0400
committerKen Moore <ken@pcbsd.org>2015-04-24 19:00:16 -0400
commit322855e0e8cb8b1733af2ef7c1ac4ab348079a17 (patch)
tree13c2493079f14bcdaa52102bc401fba496a78506 /lumina-desktop
parentMerge branch 'master' of github.com:pcbsd/lumina (diff)
downloadlumina-322855e0e8cb8b1733af2ef7c1ac4ab348079a17.tar.gz
lumina-322855e0e8cb8b1733af2ef7c1ac4ab348079a17.tar.bz2
lumina-322855e0e8cb8b1733af2ef7c1ac4ab348079a17.zip
Oops, accidentally committed a change to the desktop init process (reverted becuase it slows down the DE init significantly).
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