X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=main.c;h=f1f71fd199c0043b043416b32027e7884ce851c2;hb=6175a39e8e743dce985c5ba80801d88df9ee2dce;hp=59b3a7235c19688e40452ae660bc1a3432e7c7ff;hpb=b6cd6ed2661693c90c1c6e7119a8ac4a0b09e7e1;p=dmenu.git diff --git a/main.c b/main.c index 59b3a72..f1f71fd 100644 --- a/main.c +++ b/main.c @@ -28,7 +28,7 @@ struct Item { static char text[4096]; static char *prompt = NULL; -static int mx, my, mw, mh; +static int mw, mh; static int ret = 0; static int nitem = 0; static unsigned int cmdw = 0; @@ -431,12 +431,10 @@ main(int argc, char *argv[]) { wa.override_redirect = 1; wa.background_pixmap = ParentRelative; wa.event_mask = ExposureMask | ButtonPressMask | KeyPressMask; - mx = my = 0; mw = DisplayWidth(dpy, screen); mh = dc.font.height + 2; - if(bottom) - my += DisplayHeight(dpy, screen) - mh; - win = XCreateWindow(dpy, root, mx, my, 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);