diff options
author | okan | 2013-05-06 16:00:34 +0000 |
---|---|---|
committer | okan | 2013-05-06 16:00:34 +0000 |
commit | 171d4921d9f4368b1ea53baca6f4a35444ceb784 (patch) | |
tree | 5fd685d7a0ccd862f50f067f0a0bffdb3d1e0f64 | |
parent | e78f37ab23319d08d6aa05292514fec363905061 (diff) | |
download | cwm-171d4921d9f4368b1ea53baca6f4a35444ceb784.tar.gz |
border width/color makes no sense on menuwin
Diffstat (limited to '')
-rw-r--r-- | menu.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -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.57 2013/05/02 20:18:35 okan Exp $ + * $OpenBSD: menu.c,v 1.58 2013/05/06 16:00:34 okan Exp $ */ #include <sys/param.h> @@ -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); } |