Re-draw borders after reloading, not before; from Alexander Polakov.

ok oga@
This commit is contained in:
okan 2011-07-26 08:51:24 +00:00
parent 30dbdf4178
commit 912dd46a7e

4
conf.c
View File

@ -94,13 +94,13 @@ conf_reload(struct conf *c)
return; return;
} }
TAILQ_FOREACH(cc, &Clientq, entry)
client_draw_border(cc);
TAILQ_FOREACH(sc, &Screenq, entry) { TAILQ_FOREACH(sc, &Screenq, entry) {
conf_gap(c, sc); conf_gap(c, sc);
conf_color(c, sc); conf_color(c, sc);
conf_font(c, sc); conf_font(c, sc);
} }
TAILQ_FOREACH(cc, &Clientq, entry)
client_draw_border(cc);
} }
static struct { static struct {