diff options
| -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 |
