X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=scripts%2Fstackedcycle.py;h=757154a61470396c63db578b2039243b91d2e293;hb=c0b0c00408d2ef2c0214f8aeb760c4dbe0fa37c4;hp=5731a56456b82f641687d393d63ea48c18d9d6eb;hpb=8a05ae261d640df3844fdae942556793c62bd073;p=chaz%2Fopenbox diff --git a/scripts/stackedcycle.py b/scripts/stackedcycle.py index 5731a564..757154a6 100644 --- a/scripts/stackedcycle.py +++ b/scripts/stackedcycle.py @@ -93,11 +93,15 @@ class cycledata: oldpos = self.menupos self.menupos = -1 - # get the list of clients + # get the list of clients, keeping iconic windows at the bottom self.clients = [] + iconic_clients = [] for i in focus._clients: c = ob.openbox.findClient(i) - if c: self.clients.append(c) + if c: + if c.iconic(): iconic_clients.append(c) + else: self.clients.append(c) + self.clients.extend(iconic_clients) font = self.style.labelFont() longest = 0 @@ -192,6 +196,8 @@ class cycledata: # popup disappears, screwing up the focus ob.mgrab(self.screen.number()) + if not len(self.clients): return # don't both doing anything + self.menuwidgets[self.menupos].unfocus() if forward: self.menupos += 1