aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/panel-plugins/taskmanager
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/panel-plugins/taskmanager
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/panel-plugins/taskmanager')
-rw-r--r--lumina-desktop/panel-plugins/taskmanager/LTaskManagerPlugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-desktop/panel-plugins/taskmanager/LTaskManagerPlugin.cpp b/lumina-desktop/panel-plugins/taskmanager/LTaskManagerPlugin.cpp
index 1785c681..8f73ffa1 100644
--- a/lumina-desktop/panel-plugins/taskmanager/LTaskManagerPlugin.cpp
+++ b/lumina-desktop/panel-plugins/taskmanager/LTaskManagerPlugin.cpp
@@ -35,7 +35,7 @@ void LTaskManagerPlugin::UpdateButtons(){
//Get the current window list
QList<WId> winlist = LSession::handle()->XCB->WindowList();
//Do not change the status of the previously active window if it just changed to a non-visible window
- bool skipActive = !winlist.contains( LSession::handle()->XCB->ActiveWindow() );
+ bool skipActive = false;//!winlist.contains( LSession::handle()->XCB->ActiveWindow() );
//qDebug() << "Update Buttons:" << winlist;
if(updating > ctime){ return; } //another thread kicked off already - stop this one
//Now go through all the current buttons first
bgstack15