diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2012-04-08 06:47:26 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2012-04-08 06:47:26 +0000 |
commit | 631d6b59fdb193cc29d845d1baf30b729a4cb75a (patch) | |
tree | 90e2f029008bc8cba2e6a5140d799d2e1ed712c1 /names.c | |
parent | ed54f01d2f830935e443b3c009a6ef6085c9ae20 (diff) | |
download | rtmux-631d6b59fdb193cc29d845d1baf30b729a4cb75a.tar.gz rtmux-631d6b59fdb193cc29d845d1baf30b729a4cb75a.tar.bz2 rtmux-631d6b59fdb193cc29d845d1baf30b729a4cb75a.zip |
Do not fire name timer when automatic-rename is off, from Tim Ruehsen a
while ago.
Diffstat (limited to 'names.c')
-rw-r--r-- | names.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -49,9 +49,7 @@ window_name_callback(unused int fd, unused short events, void *data) struct window *w = data; char *name, *wname; - queue_window_name(w); /* XXX even if the option is off? */ - if (!options_get_number(&w->options, "automatic-rename")) - return; + queue_window_name(w); /* stopped when option turned off */ if (w->active->screen != &w->active->base) name = NULL; |