aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-04-15 11:06:12 -0400
committerKen Moore <moorekou@gmail.com>2016-04-15 11:06:12 -0400
commitf9fb75de67e88cf136a6965655e65a16bfc28ca9 (patch)
tree43efe3f8dc7fb217a5c50adaaabe4696f12b794f
parentGet parenthesis/bracket highlighting into the text edit - now all the basics ... (diff)
downloadlumina-f9fb75de67e88cf136a6965655e65a16bfc28ca9.tar.gz
lumina-f9fb75de67e88cf136a6965655e65a16bfc28ca9.tar.bz2
lumina-f9fb75de67e88cf136a6965655e65a16bfc28ca9.zip
Make sure that the desktop widget updates itself and any panels on screen/resize changes.
-rw-r--r--lumina-desktop/LDesktop.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-desktop/LDesktop.cpp b/lumina-desktop/LDesktop.cpp
index be34c123..72b267b0 100644
--- a/lumina-desktop/LDesktop.cpp
+++ b/lumina-desktop/LDesktop.cpp
@@ -83,7 +83,7 @@ QRect LDesktop::availableScreenGeom(){
void LDesktop::UpdateGeometry(){
//First make sure there is something different about the geometry
- if(desktop->screenGeometry(desktopnumber)==bgWindow->geometry()){ return; }
+ //if(desktop->screenGeometry(desktopnumber)==bgWindow->geometry()){ return; }
//Now update the screen
// NOTE: This functionality is highly event-driven based on X changes - so we need to keep things in order (no signals/slots)
qDebug() << "Changing Desktop Geom:" << desktopnumber;
bgstack15