Do not fire name timer when automatic-rename is off, from Tim Ruehsen a

while ago.
This commit is contained in:
Nicholas Marriott
2012-04-08 06:47:26 +00:00
parent ed54f01d2f
commit 631d6b59fd
3 changed files with 16 additions and 5 deletions

View File

@ -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;