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

@ -297,9 +297,9 @@ window_create1(u_int sx, u_int sy)
w->sx = sx;
w->sy = sy;
queue_window_name(w);
options_init(&w->options, &global_w_options);
if (options_get_number(&w->options, "automatic-rename"))
queue_window_name(w);
for (i = 0; i < ARRAY_LENGTH(&windows); i++) {
if (ARRAY_ITEM(&windows, i) == NULL) {