tfixed no-input invisible text bug - dmenu - Dmenu fork with xft fonts.
 (HTM) git clone git://r-36.net/dmenu
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 309d071df557142e6efc328bd1475760b4f576e6
 (DIR) parent 26b9f3de0ffe471e5335b07454147457e373c037
 (HTM) Author: Connor Lane Smith <cls@lubutu.com>
       Date:   Wed, 30 Jun 2010 10:45:24 +0100
       
       fixed no-input invisible text bug
       Diffstat:
         dmenu.c                             |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/dmenu.c b/dmenu.c
       t@@ -182,7 +182,7 @@ drawmenu(void) {
                drawtext(&dc, *text ? text : NULL, normcol, False);
                if(lines > 0)
                        drawmenuv();
       -        else
       +        else if(curr)
                        drawmenuh();
                XCopyArea(dpy, dc.drawable, win, dc.gc, 0, 0, mw, mh, 0, 0);
                XFlush(dpy);
       t@@ -194,7 +194,7 @@ drawmenuh(void) {
        
                dc.x += cmdw;
                dc.w = spaceitem;
       -        drawtext(&dc, curr && curr->left ? "<" : NULL, normcol, False);
       +        drawtext(&dc, curr->left ? "<" : NULL, normcol, False);
                dc.x += dc.w;
                for(i = curr; i != next; i = i->right) {
                        dc.w = MIN(textw(&dc, i->text), mw / 3);