diff options
author | Ken Moore <ken@pcbsd.org> | 2015-04-24 19:00:16 -0400 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2015-04-24 19:00:16 -0400 |
commit | 322855e0e8cb8b1733af2ef7c1ac4ab348079a17 (patch) | |
tree | 13c2493079f14bcdaa52102bc401fba496a78506 | |
parent | Merge branch 'master' of github.com:pcbsd/lumina (diff) | |
download | lumina-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).
-rw-r--r-- | lumina-desktop/LDesktop.cpp | 8 |
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(); } |