diff options
author | Okan Demirmen <okan@cvs.openbsd.org> | 2013-05-07 01:35:42 +0000 |
---|---|---|
committer | Okan Demirmen <okan@cvs.openbsd.org> | 2013-05-07 01:35:42 +0000 |
commit | 771744e9bebbf24ee3d30e8e0dcb92425368d612 (patch) | |
tree | da91370352bd2e94d09bace458e6eb58aebb45f1 /app/cwm | |
parent | 05901ced5f7faaa3f500b27af4aeb348453af7e6 (diff) |
border width/color makes sense for some, so put it back
Diffstat (limited to 'app/cwm')
-rw-r--r-- | app/cwm/menu.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/app/cwm/menu.c b/app/cwm/menu.c index fffea016f..fd531c382 100644 --- a/app/cwm/menu.c +++ b/app/cwm/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.58 2013/05/06 16:00:34 okan Exp $ + * $OpenBSD: menu.c,v 1.59 2013/05/07 01:35:41 okan Exp $ */ #include <sys/param.h> @@ -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); } |