hotfix changes
Anselm R. Garbe arg@suckless.org
Wed, 17 Jan 2007 11:10:26 +0100
M
main.c
→
main.c
@@ -350,7 +350,7 @@ char *normfg = NORMFGCOLOR;
char *selbg = SELBGCOLOR; char *selfg = SELFGCOLOR; fd_set rd; - int i, j, my; + int i, j; struct timeval timeout; Item *itm; XEvent ev;@@ -431,12 +431,10 @@ /* menu window */
wa.override_redirect = 1; wa.background_pixmap = ParentRelative; wa.event_mask = ExposureMask | ButtonPressMask | KeyPressMask; - my = 0; mw = DisplayWidth(dpy, screen); mh = dc.font.height + 2; - if(bottom) - my += DisplayHeight(dpy, screen) - mh; - win = XCreateWindow(dpy, root, 0, 0, mw, mh, 0, + win = XCreateWindow(dpy, root, 0, + bottom ? DisplayHeight(dpy, screen) - mh : 0, mw, mh, 0, DefaultDepth(dpy, screen), CopyFromParent, DefaultVisual(dpy, screen), CWOverrideRedirect | CWBackPixmap | CWEventMask, &wa);