match first

This commit is contained in:
Connor Lane Smith 2011-05-15 14:21:00 +01:00
parent d0051e7bb8
commit 4776d6dc61
1 changed files with 5 additions and 4 deletions

View File

@ -530,6 +530,10 @@ setup(void) {
y = topbar ? 0 : DisplayHeight(dc->dpy, screen) - mh;
mw = DisplayWidth(dc->dpy, screen);
}
inputw = MIN(inputw, mw/3);
promptw = prompt ? textw(dc, prompt) : 0;
match();
/* menu window */
wa.override_redirect = True;
wa.background_pixmap = ParentRelative;
@ -539,10 +543,7 @@ setup(void) {
DefaultVisual(dc->dpy, screen),
CWOverrideRedirect | CWBackPixmap | CWEventMask, &wa);
resizedc(dc, mw, mh);
inputw = MIN(inputw, mw/3);
promptw = prompt ? textw(dc, prompt) : 0;
XMapRaised(dc->dpy, win);
resizedc(dc, mw, mh);
drawmenu();
match();
}