diff options
author | Okan Demirmen <okan@cvs.openbsd.org> | 2011-09-08 12:00:51 +0000 |
---|---|---|
committer | Okan Demirmen <okan@cvs.openbsd.org> | 2011-09-08 12:00:51 +0000 |
commit | 071dba74ce834d19696d6c13e856dc416e71f2b1 (patch) | |
tree | d08061526d3c0943003bda7face3ac4761175f01 /app/cwm/conf.c | |
parent | b82d763d2657640eed5c052cebcaa3295b51df74 (diff) |
reinit menu on reload; from Alexander Polakov. needed for catching
upcoming menu config changes.
ok oga@
Diffstat (limited to 'app/cwm/conf.c')
-rw-r--r-- | app/cwm/conf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/cwm/conf.c b/app/cwm/conf.c index 2cc725185..85e5f0f32 100644 --- a/app/cwm/conf.c +++ b/app/cwm/conf.c @@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: conf.c,v 1.94 2011/09/03 09:25:39 okan Exp $ + * $OpenBSD: conf.c,v 1.95 2011/09/08 12:00:49 okan Exp $ */ #include <sys/param.h> @@ -100,6 +100,7 @@ conf_reload(struct conf *c) conf_gap(c, sc); conf_color(c, sc); conf_font(c, sc); + menu_init(sc); } TAILQ_FOREACH(cc, &Clientq, entry) client_draw_border(cc); |