aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-05-16 17:31:46 +0200
committerMattias Andrée <maandree@operamail.com>2014-05-16 17:31:46 +0200
commitf5a9b25cf67061c00c6457ab9c42ec79f9902d76 (patch)
treec753b3629a73bf0fb7f896691922a4941948821d
parentupdate dist (diff)
downloadnightshift-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-focus2
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)