diff options
author | okan | 2011-09-08 12:00:49 +0000 |
---|---|---|
committer | okan | 2011-09-08 12:00:49 +0000 |
commit | 2f671ecd12558466c3b0f38604dedf5f2fab2e59 (patch) | |
tree | 5ed136d004a1b39ac6747afb11a8153077873ab8 /conf.c | |
parent | 6ddb274724b404adf7d7bd33dae5ebb383784375 (diff) | |
download | cwm-2f671ecd12558466c3b0f38604dedf5f2fab2e59.tar.gz |
reinit menu on reload; from Alexander Polakov. needed for catching
upcoming menu config changes.
ok oga@
Diffstat (limited to '')
-rw-r--r-- | conf.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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); |