From 3449a56aae35f5d06f51326008b9b58695cad1b0 Mon Sep 17 00:00:00 2001 From: Connor Lane Smith Date: Tue, 29 Jun 2010 19:19:20 +0100 Subject: [PATCH] decosmetics --- dmenubar/dinput.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dmenubar/dinput.c b/dmenubar/dinput.c index b69dcb3..6b78598 100644 --- a/dmenubar/dinput.c +++ b/dmenubar/dinput.c @@ -76,11 +76,11 @@ drawinput(void) /* print prompt? */ if(prompt) { dc.w = promptw; - drawtext(&dc, prompt, normcol, False); + drawtext(&dc, prompt, selcol, False); dc.x += dc.w; } dc.w = mw - dc.x; - drawtext(&dc, *text ? text : NULL, selcol, False); + drawtext(&dc, *text ? text : NULL, normcol, False); drawcursor(); XCopyArea(dpy, dc.drawable, win, dc.gc, 0, 0, mw, mh, 0, 0); XFlush(dpy);