summary refs log tree commit diff
path: root/menu.c
diff options
context:
space:
mode:
authorokan <okan>2013-05-07 01:35:41 +0000
committerokan <okan>2013-05-07 01:35:41 +0000
commit5f06e5a8caf07223bef5da977868ca8738f95a0f (patch)
tree3c3567181332575ac80735c2962ae914a88c7dcf /menu.c
parent1a06f09fa0e1a92d98757f1d9d0a001ecf3e3bb4 (diff)
downloadcwm-5f06e5a8caf07223bef5da977868ca8738f95a0f.tar.gz
cwm-5f06e5a8caf07223bef5da977868ca8738f95a0f.tar.xz
cwm-5f06e5a8caf07223bef5da977868ca8738f95a0f.zip
border width/color makes sense for some, so put it back
Diffstat (limited to 'menu.c')
-rw-r--r--menu.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/menu.c b/menu.c
index 10af051..898bf2c 100644
--- a/menu.c
+++ b/menu.c
@@ -81,7 +81,9 @@ static int		 menu_keycode(XKeyEvent *, enum ctltype *,
 void
 menu_init(struct screen_ctx *sc)
 {
-	sc->menuwin = XCreateSimpleWindow(X_Dpy, sc->rootwin, 0, 0, 1, 1, 0, 0,
+	sc->menuwin = XCreateSimpleWindow(X_Dpy, sc->rootwin, 0, 0, 1, 1,
+	    Conf.bwidth,
+	    sc->xftcolor[CWM_COLOR_MENU_FG].pixel,
 	    sc->xftcolor[CWM_COLOR_MENU_BG].pixel);
 }