From b24c484865c2c0563e5e9352ed46f49327e927f2 Mon Sep 17 00:00:00 2001 From: Kris Moore Date: Wed, 10 Feb 2016 11:21:06 -0500 Subject: 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. --- lumina-desktop/LSession.cpp | 6 +++--- 1 file 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){ -- cgit