diff options
author | okan | 2011-07-25 15:41:05 +0000 |
---|---|---|
committer | okan | 2011-07-25 15:41:05 +0000 |
commit | 3f10d771c8ed54e10c1335fb42fa0123c5902ade (patch) | |
tree | 25cebd8f78f45426ec0b0186f9d74818c8c22284 /menu.c | |
parent | 02915d130c044aa89ceff108b868c705856a35ca (diff) | |
download | cwm-3f10d771c8ed54e10c1335fb42fa0123c5902ade.tar.gz |
use the menu border; from Alexander Polakov, but with the existing define.
ok oga@
Diffstat (limited to '')
-rw-r--r-- | menu.c | 7 |
1 files changed, 4 insertions, 3 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.31 2011/07/25 15:10:24 okan Exp $ + * $OpenBSD: menu.c,v 1.32 2011/07/25 15:41:05 okan Exp $ */ #include <sys/param.h> @@ -76,8 +76,9 @@ menu_init(struct screen_ctx *sc) { XGCValues gv; - sc->menuwin = XCreateSimpleWindow(X_Dpy, sc->rootwin, 0, 0, 1, 1, 0, - sc->color[CWM_COLOR_BG_MENU].pixel, + sc->menuwin = XCreateSimpleWindow(X_Dpy, sc->rootwin, 0, 0, 1, 1, + Conf.bwidth, + sc->color[CWM_COLOR_FG_MENU].pixel, sc->color[CWM_COLOR_BG_MENU].pixel); gv.foreground = |