diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-01-29 23:46:17 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-01-29 23:46:17 +0000 |
| commit | ef0e907efd1c3e6372e172cedd9108034744486a (patch) | |
| tree | dcb190c447e025a43557ccf06acc49e5d0bf33bf /scripts | |
| parent | 88662942c65b9b3e8cd208882e39cae675bc5374 (diff) | |
add windows on all-desktops to the cycle list
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/focus.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/focus.py b/scripts/focus.py index d2cb1385..60ea4189 100644 --- a/scripts/focus.py +++ b/scripts/focus.py @@ -194,7 +194,8 @@ def _create_popup_list(data): for c in _clients: client = ob.openbox.findClient(c) desktop = ob.openbox.screen(data.screen).desktop() - if client and (client.desktop() == desktop and \ + if client and ((client.desktop() == desktop or + client.desktop() == 0xffffffff) and \ client.normal()): t = client.title() if len(t) > 50: # limit the length of titles |
