From 912dd46a7e5aac20c685fcb424a484a44bb9c713 Mon Sep 17 00:00:00 2001 From: okan Date: Tue, 26 Jul 2011 08:51:24 +0000 Subject: [PATCH] Re-draw borders after reloading, not before; from Alexander Polakov. ok oga@ --- conf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf.c b/conf.c index 223f621..ecdc578 100644 --- a/conf.c +++ b/conf.c @@ -94,13 +94,13 @@ conf_reload(struct conf *c) return; } - TAILQ_FOREACH(cc, &Clientq, entry) - client_draw_border(cc); TAILQ_FOREACH(sc, &Screenq, entry) { conf_gap(c, sc); conf_color(c, sc); conf_font(c, sc); } + TAILQ_FOREACH(cc, &Clientq, entry) + client_draw_border(cc); } static struct {