diff options
author | Ken Moore <ken@pcbsd.org> | 2014-10-29 16:21:34 -0400 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2014-10-29 16:21:34 -0400 |
commit | 152b3c2e3f0b554fc79561dfbad83adbba91065c (patch) | |
tree | 8f3b0dffdbe17492dde5cd69a03295cce0fca869 /lumina-desktop/LDesktop.cpp | |
parent | Insert a sanity check into lumina-config: (diff) | |
download | lumina-152b3c2e3f0b554fc79561dfbad83adbba91065c.tar.gz lumina-152b3c2e3f0b554fc79561dfbad83adbba91065c.tar.bz2 lumina-152b3c2e3f0b554fc79561dfbad83adbba91065c.zip |
Tag Lumina version 0.7.1:
This version mainly contains bugfixes and stability fixes from 0.7.0. The only new features are the "window list" menu plugin, and the option to have panels auto-hide.
Diffstat (limited to 'lumina-desktop/LDesktop.cpp')
-rw-r--r-- | lumina-desktop/LDesktop.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lumina-desktop/LDesktop.cpp b/lumina-desktop/LDesktop.cpp index 5e1fb3bf..7988d6b8 100644 --- a/lumina-desktop/LDesktop.cpp +++ b/lumina-desktop/LDesktop.cpp @@ -383,7 +383,9 @@ void LDesktop::UpdatePanels(){ if(!found){ qDebug() << " -- Create panel "<< i; //New panel - PANELS << new LPanel(settings, desktopnumber, i, bgWindow); + LPanel *pan = new LPanel(settings, desktopnumber, i, bgWindow); + PANELS << pan; + pan->show(); } } //Give it a 1/2 second before ensuring that the visible desktop area is correct @@ -451,6 +453,7 @@ void LDesktop::UpdateBackground(){ //Now update the panel backgrounds for(int i=0; i<PANELS.length(); i++){ PANELS[i]->update(); + PANELS[i]->show(); } bgupdating=false; } |