aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorokan2011-09-08 12:00:49 +0000
committerokan2011-09-08 12:00:49 +0000
commit2f671ecd12558466c3b0f38604dedf5f2fab2e59 (patch)
tree5ed136d004a1b39ac6747afb11a8153077873ab8
parent6ddb274724b404adf7d7bd33dae5ebb383784375 (diff)
downloadcwm-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.c3
-rw-r--r--menu.c6
2 files changed, 7 insertions, 2 deletions
diff --git a/conf.c b/conf.c
index 2cc7251..85e5f0f 100644
--- a/conf.c
+++ b/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);
diff --git a/menu.c b/menu.c
index 27f628c..79b283d 100644
--- a/menu.c
+++ b/menu.c
@@ -16,7 +16,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: menu.c,v 1.32 2011/07/25 15:41:05 okan Exp $
+ * $OpenBSD: menu.c,v 1.33 2011/09/08 12:00:50 okan Exp $
*/
#include <sys/param.h>
@@ -76,6 +76,8 @@ menu_init(struct screen_ctx *sc)
{
XGCValues gv;
+ if (sc->menuwin)
+ XDestroyWindow(X_Dpy, sc->menuwin);
sc->menuwin = XCreateSimpleWindow(X_Dpy, sc->rootwin, 0, 0, 1, 1,
Conf.bwidth,
sc->color[CWM_COLOR_FG_MENU].pixel,
@@ -86,6 +88,8 @@ menu_init(struct screen_ctx *sc)
gv.background = sc->color[CWM_COLOR_BG_MENU].pixel;
gv.function = GXxor;
+ if (sc->gc)
+ XFreeGC(X_Dpy, sc->gc);
sc->gc = XCreateGC(X_Dpy, sc->menuwin,
GCForeground|GCBackground|GCFunction, &gv);
}