diff options
author | Moritz Wilhelmy <moritz+hg@wzff.de> | 2012-05-15 11:47:54 +0200 |
---|---|---|
committer | Moritz Wilhelmy <moritz+hg@wzff.de> | 2012-05-15 11:47:54 +0200 |
commit | 1299e41447fe5850d127857a68f37c5badd491ce (patch) | |
tree | 85b9d086837763952d6441cd024578c4d6711311 | |
parent | 38fccafada4eee3e4e0301d7c6eadd3c5788b305 (diff) |
ignore prompt if it is empty in addition to NULL
-rw-r--r-- | dmenu.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -169,7 +169,7 @@ drawmenu(void) { | |||
169 | dc->h = bh; | 169 | dc->h = bh; |
170 | drawrect(dc, 0, 0, mw, mh, True, BG(dc, normcol)); | 170 | drawrect(dc, 0, 0, mw, mh, True, BG(dc, normcol)); |
171 | 171 | ||
172 | if(prompt) { | 172 | if(prompt && *prompt) { |
173 | dc->w = promptw; | 173 | dc->w = promptw; |
174 | drawtext(dc, prompt, selcol); | 174 | drawtext(dc, prompt, selcol); |
175 | dc->x = dc->w; | 175 | dc->x = dc->w; |
@@ -579,7 +579,7 @@ setup(void) { | |||
579 | y = topbar ? 0 : DisplayHeight(dc->dpy, screen) - mh; | 579 | y = topbar ? 0 : DisplayHeight(dc->dpy, screen) - mh; |
580 | mw = DisplayWidth(dc->dpy, screen); | 580 | mw = DisplayWidth(dc->dpy, screen); |
581 | } | 581 | } |
582 | promptw = prompt ? textw(dc, prompt) : 0; | 582 | promptw = (prompt && *prompt) ? textw(dc, prompt) : 0; |
583 | inputw = MIN(inputw, mw/3); | 583 | inputw = MIN(inputw, mw/3); |
584 | match(); | 584 | match(); |
585 | 585 | ||