about summary refs log tree commit diff
diff options
context:
space:
mode:
authorokan <okan>2013-05-06 16:00:34 +0000
committerokan <okan>2013-05-06 16:00:34 +0000
commit27854d9061eab7da9ef10bb36b9b8c7f971baebe (patch)
treeaa45f5b3301966a6d369c2ce697f1e3c2fa18e52
parente91c7162623a0b83fe83a528d7a382f268b22a8b (diff)
downloadcwm-27854d9061eab7da9ef10bb36b9b8c7f971baebe.tar.gz
cwm-27854d9061eab7da9ef10bb36b9b8c7f971baebe.tar.xz
cwm-27854d9061eab7da9ef10bb36b9b8c7f971baebe.zip
border width/color makes no sense on menuwin
-rw-r--r--menu.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/menu.c b/menu.c
index 898bf2c..10af051 100644
--- a/menu.c
+++ b/menu.c
@@ -81,9 +81,7 @@ 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,
-	    Conf.bwidth,
-	    sc->xftcolor[CWM_COLOR_MENU_FG].pixel,
+	sc->menuwin = XCreateSimpleWindow(X_Dpy, sc->rootwin, 0, 0, 1, 1, 0, 0,
 	    sc->xftcolor[CWM_COLOR_MENU_BG].pixel);
 }