focus windows on all desktops too
This commit is contained in:
parent
a0389d0cd6
commit
04c16882fa
1 changed files with 3 additions and 2 deletions
|
@ -121,8 +121,9 @@ def _do_stacked_cycle(data, forward):
|
||||||
desktop = ob.openbox.screen(data.screen).desktop()
|
desktop = ob.openbox.screen(data.screen).desktop()
|
||||||
for w in clients:
|
for w in clients:
|
||||||
client = ob.openbox.findClient(w)
|
client = ob.openbox.findClient(w)
|
||||||
if client and (client.desktop() == desktop and \
|
if client and (client.desktop() == desktop or
|
||||||
client.normal() and client.focus()):
|
client.desktop() == 0xffffffff) \
|
||||||
|
and client.normal() and client.focus():
|
||||||
if stacked_cycle_raise:
|
if stacked_cycle_raise:
|
||||||
ob.openbox.screen(data.screen).raiseWindow(client)
|
ob.openbox.screen(data.screen).raiseWindow(client)
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in a new issue