fix a silly copy paste bug, titlenumber should now be disableable

This commit is contained in:
Mikael Magnusson 2006-08-18 21:23:02 +00:00
parent 6445a4f3f6
commit 1de9c1901c
2 changed files with 8 additions and 6 deletions

View file

@ -1546,11 +1546,12 @@ void client_update_title(ObClient *self)
} }
} }
/* did the title change? then reset the title_count */
if (old_title && 0 != strncmp(old_title, data, strlen(data)))
self->title_count = 1;
if (config_title_number) { if (config_title_number) {
/* did the title change? then reset the title_count */
if (old_title && 0 != strncmp(old_title, data, strlen(data)))
self->title_count = 1;
/* look for duplicates and append a number */ /* look for duplicates and append a number */
nums = 0; nums = 0;
for (it = client_list; it; it = g_list_next(it)) for (it = client_list; it; it = g_list_next(it))
@ -1573,7 +1574,8 @@ void client_update_title(ObClient *self)
g_free(data); g_free(data);
data = ndata; data = ndata;
} }
} } else
self->title_count = 1;
no_number: no_number:
PROP_SETS(self->window, net_wm_visible_name, data); PROP_SETS(self->window, net_wm_visible_name, data);

View file

@ -432,7 +432,7 @@ static void parse_theme(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node,
config_title_layout = parse_string(doc, n); config_title_layout = parse_string(doc, n);
} }
if ((n = parse_find_node("titleNumber", node))) if ((n = parse_find_node("titleNumber", node)))
config_theme_hidedisabled = parse_bool(doc, n); config_theme_titlenumber = parse_bool(doc, n);
if ((n = parse_find_node("keepBorder", node))) if ((n = parse_find_node("keepBorder", node)))
config_theme_keepborder = parse_bool(doc, n); config_theme_keepborder = parse_bool(doc, n);
if ((n = parse_find_node("hideDisabled", node))) if ((n = parse_find_node("hideDisabled", node)))