diff options
Diffstat (limited to 'src/Watcher/get_windows.py')
-rwxr-xr-x | src/Watcher/get_windows.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Watcher/get_windows.py b/src/Watcher/get_windows.py index 393c7ff..f895662 100755 --- a/src/Watcher/get_windows.py +++ b/src/Watcher/get_windows.py @@ -44,7 +44,7 @@ def active_window(): # returns true if user has move to next app which is not the same as previous def is_window_changed(a): result = False - time.sleep(0.1) + time.sleep(0.5) b = active_window() if a != b : result = True |