Add new options in wmfsrc

This commit is contained in:
Martin Duquesnoy
2011-09-07 20:37:16 +02:00
parent 5e34dcf916
commit 90077ffd1c
3 changed files with 11 additions and 1 deletions

View File

@@ -64,7 +64,6 @@ config_theme(void)
t->client_titlebar_width = fetch_opt_first(ks[i], "12", "client_titlebar_width").num;
t->client_border_width = fetch_opt_first(ks[i], "1", "client_border_width").num;
SLIST_INSERT_HEAD(&W->h.theme, t, next);
}

View File

@@ -235,6 +235,8 @@ infobar_free(Scr33n *s)
while(!SLIST_EMPTY(&s->infobars))
{
i = SLIST_FIRST(&s->infobars);
/* SLIST_REMOVE is done by infobar_remove */
infobar_remove(i);
}
}