From 11f0f812c5526126706dd1f11ed072faf0c4a9b2 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Wed, 19 Aug 2009 09:04:48 +0000 Subject: Didn't mean to commit this stuff. --- names.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'names.c') diff --git a/names.c b/names.c index e7c95f14..6a333a07 100644 --- a/names.c +++ b/names.c @@ -1,4 +1,4 @@ -/* $OpenBSD: names.c,v 1.5 2009/08/18 21:18:20 nicm Exp $ */ +/* $Id: names.c,v 1.13 2009-08-19 09:04:48 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott @@ -42,6 +42,8 @@ set_window_names(void) w = ARRAY_ITEM(&windows, i); if (w == NULL || w->active == NULL) continue; + if (!options_get_number(&w->options, "automatic-rename")) + continue; if (timercmp(&tv, &w->name_timer, <)) continue; @@ -50,9 +52,6 @@ set_window_names(void) tv2.tv_usec = NAME_INTERVAL * 1000L; timeradd(&w->name_timer, &tv2, &w->name_timer); - if (!options_get_number(&w->options, "automatic-rename")) - continue; - if (w->active->screen != &w->active->base) name = NULL; else -- cgit