summaryrefslogtreecommitdiffstats
path: root/dinput.c
diff options
context:
space:
mode:
authorGravatar Connor Lane Smith 2010-07-30 10:25:55 +0100
committerGravatar Connor Lane Smith 2010-07-30 10:25:55 +0100
commit115c01b74ebd57382679bec5c6e1ff5604370cbf (patch)
tree5908c6e7c4fa4611e240cc2e06067f44ca7304cc /dinput.c
parentfixed vlist select (diff)
new libdraw
Diffstat (limited to '')
-rw-r--r--dinput.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/dinput.c b/dinput.c
index e861afc..4bbc7bc 100644
--- a/dinput.c
+++ b/dinput.c
@@ -34,12 +34,14 @@ drawbar(void)
/* print prompt? */
if(prompt) {
dc.w = promptw;
+ drawbox(&dc, selcol);
drawtext(&dc, prompt, selcol);
dc.x += dc.w;
}
dc.w = mw - dc.x;
drawtext(&dc, text, normcol);
- drawcursor(&dc, text, cursor, normcol);
+ drawline(&dc, textnw(&dc, text, cursor) + dc.font.height/2, 2, 1,
+ dc.font.height-2, normcol);
commitdraw(&dc, win);
}