diff options
author | Connor Lane Smith <cls@lubutu.com> | 2011-05-15 14:21:00 +0100 |
---|---|---|
committer | Connor Lane Smith <cls@lubutu.com> | 2011-05-15 14:21:00 +0100 |
commit | 4776d6dc6148498a1eab11dd3a15c03736f15d42 (patch) | |
tree | 2f131c6f88c6b9a554c06b77f7dc762539e42db9 | |
parent | d0051e7bb858815866fbaf3a8fd5b50319c0c86d (diff) |
match first
-rw-r--r-- | dmenu.c | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -530,6 +530,10 @@ setup(void) { | |||
530 | y = topbar ? 0 : DisplayHeight(dc->dpy, screen) - mh; | 530 | y = topbar ? 0 : DisplayHeight(dc->dpy, screen) - mh; |
531 | mw = DisplayWidth(dc->dpy, screen); | 531 | mw = DisplayWidth(dc->dpy, screen); |
532 | } | 532 | } |
533 | inputw = MIN(inputw, mw/3); | ||
534 | promptw = prompt ? textw(dc, prompt) : 0; | ||
535 | match(); | ||
536 | |||
533 | /* menu window */ | 537 | /* menu window */ |
534 | wa.override_redirect = True; | 538 | wa.override_redirect = True; |
535 | wa.background_pixmap = ParentRelative; | 539 | wa.background_pixmap = ParentRelative; |
@@ -539,10 +543,7 @@ setup(void) { | |||
539 | DefaultVisual(dc->dpy, screen), | 543 | DefaultVisual(dc->dpy, screen), |
540 | CWOverrideRedirect | CWBackPixmap | CWEventMask, &wa); | 544 | CWOverrideRedirect | CWBackPixmap | CWEventMask, &wa); |
541 | 545 | ||
542 | resizedc(dc, mw, mh); | ||
543 | inputw = MIN(inputw, mw/3); | ||
544 | promptw = prompt ? textw(dc, prompt) : 0; | ||
545 | XMapRaised(dc->dpy, win); | 546 | XMapRaised(dc->dpy, win); |
547 | resizedc(dc, mw, mh); | ||
546 | drawmenu(); | 548 | drawmenu(); |
547 | match(); | ||
548 | } | 549 | } |