aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKris Moore <kris@pcbsd.org>2016-02-10 11:21:06 -0500
committerKris Moore <kris@pcbsd.org>2016-02-10 11:21:06 -0500
commitb24c484865c2c0563e5e9352ed46f49327e927f2 (patch)
tree6025d8bdd62dcefaca11e53e409ddeee17385f53
parentRun the updateDesktops() immediately instead of on delay (diff)
downloadlumina-b24c484865c2c0563e5e9352ed46f49327e927f2.tar.gz
lumina-b24c484865c2c0563e5e9352ed46f49327e927f2.tar.bz2
lumina-b24c484865c2c0563e5e9352ed46f49327e927f2.zip
Re-enable the timer for checkDesktop()
Can't find a way to reliably duplicate the crash we are seeing here, if it pops up down the road we will check further.
-rw-r--r--lumina-desktop/LSession.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lumina-desktop/LSession.cpp b/lumina-desktop/LSession.cpp
index afb0e125..a8a1a924 100644
--- a/lumina-desktop/LSession.cpp
+++ b/lumina-desktop/LSession.cpp
@@ -347,9 +347,9 @@ void LSession::watcherChange(QString changed){
void LSession::screensChanged(){
qDebug() << "Screen Number Changed";
-//if(screenTimer->isActive()){ screenTimer->stop(); }
-//screenTimer->start();
- updateDesktops();
+ if(screenTimer->isActive()){ screenTimer->stop(); }
+ screenTimer->start();
+ //updateDesktops();
}
void LSession::screenResized(int scrn){
bgstack15