aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/LSession.cpp
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-09-18 11:30:13 -0400
committerKen Moore <moorekou@gmail.com>2015-09-18 11:30:13 -0400
commit17963f47081fe7559854e633635f10d4b6062a58 (patch)
tree32e7aa88305892ce3f0ee48df49c2d924e2be8ce /lumina-desktop/LSession.cpp
parentClean up a little bit of the URL syntax handling in lumina-open. Now it will ... (diff)
downloadlumina-17963f47081fe7559854e633635f10d4b6062a58.tar.gz
lumina-17963f47081fe7559854e633635f10d4b6062a58.tar.bz2
lumina-17963f47081fe7559854e633635f10d4b6062a58.zip
Turn off a bunch of debugging for the lumina-desktop, and adjust the desktopview plugin a bit more.
Diffstat (limited to 'lumina-desktop/LSession.cpp')
-rw-r--r--lumina-desktop/LSession.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lumina-desktop/LSession.cpp b/lumina-desktop/LSession.cpp
index 4d631bc9..d1dc54e5 100644
--- a/lumina-desktop/LSession.cpp
+++ b/lumina-desktop/LSession.cpp
@@ -641,7 +641,7 @@ QSettings* LSession::DesktopPluginSettings(){
WId LSession::activeWindow(){
//Check the last active window pointer first
WId active = XCB->ActiveWindow();
- qDebug() << "Check Active Window:" << active << lastActiveWin;
+ //qDebug() << "Check Active Window:" << active << lastActiveWin;
if(RunningApps.contains(active)){ lastActiveWin = active; }
else if(RunningApps.contains(lastActiveWin) && XCB->WindowState(lastActiveWin) >= LXCB::VISIBLE){} //no change needed
else{
@@ -653,7 +653,7 @@ WId LSession::activeWindow(){
break;
}
}
- qDebug() << " -- New Last Active Window:" << lastActiveWin;
+ //qDebug() << " -- New Last Active Window:" << lastActiveWin;
}
return lastActiveWin;
}
bgstack15