From 53bc9635d84bdf7f74dc33f31cb8a9f21c31abd1 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 19 Jan 2015 12:43:25 -0500 Subject: Clean up the active window detection/usage for the task manager. --- lumina-desktop/panel-plugins/taskmanager/LTaskManagerPlugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lumina-desktop/panel-plugins/taskmanager') 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 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 -- cgit