diff options
author | Connor Lane Smith <cls@lubutu.com> | 2010-06-29 19:19:20 +0100 |
---|---|---|
committer | Connor Lane Smith <cls@lubutu.com> | 2010-06-29 19:19:20 +0100 |
commit | f2abaf8b308bc25d9c5f26d3ea3818516dd477d9 (patch) | |
tree | dd4ed35f00f237ff16b3a361f0c6c2d6faa05e48 | |
parent | 340b176de6db87471610c0a75450e0de9535b6ae (diff) |
decosmetics
-rw-r--r-- | dinput.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); |