aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/LSession.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-01-19 12:43:25 -0500
committerKen Moore <ken@pcbsd.org>2015-01-19 12:43:25 -0500
commit53bc9635d84bdf7f74dc33f31cb8a9f21c31abd1 (patch)
tree026aa1d489b419dce56cb0fda2991f37fe1ce8ce /lumina-desktop/LSession.cpp
parentAdd the new home button plugin to lumina-config. (diff)
downloadlumina-53bc9635d84bdf7f74dc33f31cb8a9f21c31abd1.tar.gz
lumina-53bc9635d84bdf7f74dc33f31cb8a9f21c31abd1.tar.bz2
lumina-53bc9635d84bdf7f74dc33f31cb8a9f21c31abd1.zip
Clean up the active window detection/usage for the task manager.
Diffstat (limited to 'lumina-desktop/LSession.cpp')
-rw-r--r--lumina-desktop/LSession.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/lumina-desktop/LSession.cpp b/lumina-desktop/LSession.cpp
index b366a131..dc2bf04d 100644
--- a/lumina-desktop/LSession.cpp
+++ b/lumina-desktop/LSession.cpp
@@ -392,11 +392,10 @@ void LSession::WindowPropertyEvent(){
void LSession::WindowPropertyEvent(WId win){
//Emit the single-app signal if the window in question is one used by the task manager
- qDebug() << "Single-Property event";
- if(RunningApps.contains(win)){
+ //if(RunningApps.contains(win)){
if(DEBUG){ qDebug() << "Single-window property event"; }
emit WindowListEvent();
- }
+ //}
}
void LSession::SysTrayDockRequest(WId win){
bgstack15