aboutsummaryrefslogtreecommitdiff
path: root/src-qt5
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2018-09-06 12:21:23 -0400
committerKen Moore <ken@ixsystems.com>2018-09-06 12:21:53 -0400
commitcdc2b5f95964666b90ff00f5d222d44f6c4145fe (patch)
treee5c60df84fd45461a491f3e1aa567d9220c6d481 /src-qt5
parentAllow the disk image burner to run on .iso files (diff)
downloadlumina-cdc2b5f95964666b90ff00f5d222d44f6c4145fe.tar.gz
lumina-cdc2b5f95964666b90ff00f5d222d44f6c4145fe.tar.bz2
lumina-cdc2b5f95964666b90ff00f5d222d44f6c4145fe.zip
When a desktop is resized automatically re-do the wallpaper as well.
Diffstat (limited to 'src-qt5')
-rw-r--r--src-qt5/core/lumina-desktop/LDesktop.cpp1
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 ad66e7ba..e4706498 100644
--- a/src-qt5/core/lumina-desktop/LDesktop.cpp
+++ b/src-qt5/core/lumina-desktop/LDesktop.cpp
@@ -104,6 +104,7 @@ void LDesktop::UpdateGeometry(){
//qDebug() << " - Update Desktop Plugin Area";
//UpdateDesktopPluginArea();
//qDebug() << " - Done With Desktop Geom Updates";
+ QTimer::singleShot(0, this, SLOT(UpdateBackground()));
QTimer::singleShot(0, this, SLOT(UpdatePanels()));
}
bgstack15