aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConnor Lane Smith <cls@lubutu.com>2010-07-30 10:26:12 +0100
committerConnor Lane Smith <cls@lubutu.com>2010-07-30 10:26:12 +0100
commit7f36736d11418b0b11d02da8aa0cb663406706c2 (patch)
treeb0960ab0da5845708e7d258daf286d3d2948d281
parent115c01b74ebd57382679bec5c6e1ff5604370cbf (diff)
downloaddmenu-7f36736d11418b0b11d02da8aa0cb663406706c2.tar.gz
dmenu-7f36736d11418b0b11d02da8aa0cb663406706c2.tar.bz2
dmenu-7f36736d11418b0b11d02da8aa0cb663406706c2.zip
underline match
-rw-r--r--dmenu.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/dmenu.c b/dmenu.c
index 076cffe..9386e06 100644
--- a/dmenu.c
+++ b/dmenu.c
@@ -158,8 +158,13 @@ drawbar(void) {
void
drawitem(const char *s, unsigned long col[ColLast]) {
+ const char *p;
+ unsigned int w = textnw(&dc, text, strlen(text));
+
drawbox(&dc, col);
drawtext(&dc, s, col);
+ for(p = fstrstr(s, text); *text && (p = fstrstr(p, text)); p++)
+ drawline(&dc, textnw(&dc, s, p-s) + dc.h/2 - 1, dc.h-2, w, 1, col);
}
void