We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d2bdaa commit 960da1aCopy full SHA for 960da1a
examples/switch_between_app_windows.py
@@ -24,7 +24,8 @@ def switch_between_app_windows():
24
process_name = active_win.process_name
25
app_windows = [
26
win
27
- for win in ahk.windows.filter(exe=process_name)
+ # Filter all windows to find windows on all virtual desktops.
28
+ for win in ahk.all_windows.filter(exe=process_name)
29
if is_alt_tab_window(win)
30
]
31
if len(app_windows) < 2:
0 commit comments