aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/LSession.cpp
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-11-23 17:00:39 -0500
committerKen Moore <moorekou@gmail.com>2015-11-23 17:00:39 -0500
commit486597f6247748a6aa6c30129b2156922b869a8c (patch)
treeed6b68bd07cb65cc135b227da448027454e3235b /lumina-desktop/LSession.cpp
parentMerge branch 'master' of github.com:pcbsd/lumina (diff)
downloadlumina-486597f6247748a6aa6c30129b2156922b869a8c.tar.gz
lumina-486597f6247748a6aa6c30129b2156922b869a8c.tar.bz2
lumina-486597f6247748a6aa6c30129b2156922b869a8c.zip
Adjust the start menu to show the "genericName" instead of the comment underneath an app name, and use the comment as the tooltip. Also adjust the panel re-focus routine a bit to make it smarter about which window gets activation after leaving the panel if the previously active window was closed/minimized.
Diffstat (limited to 'lumina-desktop/LSession.cpp')
-rw-r--r--lumina-desktop/LSession.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/lumina-desktop/LSession.cpp b/lumina-desktop/LSession.cpp
index aa3fa923..b7ccbbe5 100644
--- a/lumina-desktop/LSession.cpp
+++ b/lumina-desktop/LSession.cpp
@@ -677,7 +677,11 @@ WId LSession::activeWindow(){
//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{
+ else if(RunningApps.contains(lastActiveWin) && RunningApps.length()>1){
+ int start = RunningApps.indexOf(lastActiveWin);
+ if(start<1){ lastActiveWin = RunningApps.length()-1; } //wrap around to the last item
+ else{ lastActiveWin = RunningApps[start-1]; }
+ }else{
//Need to change the last active window - find the first one which is visible
lastActiveWin = 0; //fallback value - nothing active
for(int i=0; i<RunningApps.length(); i++){
bgstack15