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:
a0389d0
)
focus windows on all desktops too
author
Dana Jansens
<danakj@orodu.net>
Thu, 30 Jan 2003 22:15:46 +0000
(22:15 +0000)
committer
Dana Jansens
<danakj@orodu.net>
Thu, 30 Jan 2003 22:15:46 +0000
(22:15 +0000)
scripts/focus.py
patch
|
blob
|
history
diff --git
a/scripts/focus.py
b/scripts/focus.py
index 00e53cbc33665144828bee2a9071484ef28f5654..feb65cca8f29c692065a500428b3da6cf6c88ed7 100644
(file)
--- a/
scripts/focus.py
+++ b/
scripts/focus.py
@@
-121,8
+121,9
@@
def _do_stacked_cycle(data, forward):
desktop = ob.openbox.screen(data.screen).desktop()
for w in clients:
client = ob.openbox.findClient(w)
- if client and (client.desktop() == desktop and \
- client.normal() and client.focus()):
+ if client and (client.desktop() == desktop or
+ client.desktop() == 0xffffffff) \
+ and client.normal() and client.focus():
if stacked_cycle_raise:
ob.openbox.screen(data.screen).raiseWindow(client)
return