diff options
author | Ken Moore <ken@ixsystems.com> | 2016-11-09 17:53:33 -0500 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2016-11-09 17:53:33 -0500 |
commit | 340c1b5cd4376e0a4ff2e7acdb4e4536f734006c (patch) | |
tree | 0df1eb3d753c9a35a0259b909a049ee2e11827a4 /src-qt5/core/lumina-desktop | |
parent | Merge branch 'master' of github.com:trueos/lumina (diff) | |
download | lumina-340c1b5cd4376e0a4ff2e7acdb4e4536f734006c.tar.gz lumina-340c1b5cd4376e0a4ff2e7acdb4e4536f734006c.tar.bz2 lumina-340c1b5cd4376e0a4ff2e7acdb4e4536f734006c.zip |
Fix the wallpaper background when a screen resizes.
Diffstat (limited to 'src-qt5/core/lumina-desktop')
-rw-r--r-- | src-qt5/core/lumina-desktop/LDesktop.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src-qt5/core/lumina-desktop/LDesktop.cpp b/src-qt5/core/lumina-desktop/LDesktop.cpp index 1a11899d..b08251bd 100644 --- a/src-qt5/core/lumina-desktop/LDesktop.cpp +++ b/src-qt5/core/lumina-desktop/LDesktop.cpp @@ -474,6 +474,7 @@ void LDesktop::UpdateDesktopPluginArea(){ bgDesktop->setGeometry(desktop->screenGeometry(desktopnumber)); bgDesktop->setDesktopArea( rec ); bgDesktop->UpdateGeom(); //just in case the plugin space itself needs to do anything + QTimer::singleShot(10, this, SLOT(UpdateBackground()) ); //Re-paint the panels (just in case a plugin was underneath it and the panel is transparent) //for(int i=0; i<PANELS.length(); i++){ PANELS[i]->update(); } //Make sure to re-disable any WM control flags |