diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-05-16 17:31:46 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-05-16 17:31:46 +0200 |
commit | f5a9b25cf67061c00c6457ab9c42ec79f9902d76 (patch) | |
tree | c753b3629a73bf0fb7f896691922a4941948821d | |
parent | update dist (diff) | |
download | nightshift-f5a9b25cf67061c00c6457ab9c42ec79f9902d76.tar.gz nightshift-f5a9b25cf67061c00c6457ab9c42ec79f9902d76.tar.bz2 nightshift-f5a9b25cf67061c00c6457ab9c42ec79f9902d76.tar.xz |
do not toggle when dying
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r-- | examples/x-window-focus | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/x-window-focus b/examples/x-window-focus index 119b832..e08442e 100644 --- a/examples/x-window-focus +++ b/examples/x-window-focus @@ -95,7 +95,7 @@ def x_window_focus_thread_function(proc): should_be_disabled = True # Perhaps toggle - if red_running and (should_be_disabled == red_status): + if red_running and (should_be_disabled == red_status) and not red_dying: if red_status or we_disabled: we_disabled = should_be_disabled proc.send_signal(signal.SIGUSR1) |