From ef0e907efd1c3e6372e172cedd9108034744486a Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Wed, 29 Jan 2003 23:46:17 +0000 Subject: [PATCH] add windows on all-desktops to the cycle list --- scripts/focus.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.39.2