From 5f06e5a8caf07223bef5da977868ca8738f95a0f Mon Sep 17 00:00:00 2001 From: okan Date: Tue, 7 May 2013 01:35:41 +0000 Subject: [PATCH] border width/color makes sense for some, so put it back --- menu.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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); }