projects
/
dana
/
openbox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b001e85
)
keep iconic windows at the bottom of the cycling list always
author
Dana Jansens
<danakj@orodu.net>
Tue, 4 Feb 2003 10:32:49 +0000
(10:32 +0000)
committer
Dana Jansens
<danakj@orodu.net>
Tue, 4 Feb 2003 10:32:49 +0000
(10:32 +0000)
scripts/stackedcycle.py
patch
|
blob
|
history
diff --git
a/scripts/stackedcycle.py
b/scripts/stackedcycle.py
index a632b3183f6ddb7d547160e0515573c9b0f53828..757154a61470396c63db578b2039243b91d2e293 100644
(file)
--- 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