X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=main.c;h=9ef0baeff6e9087a5babfa7d7d34ba3f57d69f2a;hb=f8d2a29a20bfb93c701cf8091931ac84ba3fac5e;hp=7fca45eff701069f4b11371fe8ef6d8b0957b45f;hpb=3438af001adcb1d8ff840f89ae7cb5ef8589bde6;p=dmenu.git diff --git a/main.c b/main.c index 7fca45e..9ef0bae 100644 --- a/main.c +++ b/main.c @@ -411,12 +411,9 @@ main(int argc, char *argv[]) { wa.event_mask = ExposureMask | ButtonPressMask | KeyPressMask; mx = my = 0; mw = DisplayWidth(dpy, screen); - if(bottom) { - mh = dc.font.ascent + dc.font.descent + 3; // match wmii - my = DisplayHeight(dpy, screen) - mh; - } - else - mh = dc.font.height + 2; + mh = dc.font.height + 2; + if(bottom) + my += DisplayHeight(dpy, screen) - mh; win = XCreateWindow(dpy, root, mx, my, mw, mh, 0, DefaultDepth(dpy, screen), CopyFromParent, DefaultVisual(dpy, screen),