From: Quentin Rameau Date: Sun, 22 Apr 2018 12:18:34 +0000 (+0200) Subject: Fix cursor drawn position with wide glyphs X-Git-Url: https://git.armaanb.net/?p=dmenu.git;a=commitdiff_plain;h=0f76dd2fb89748eb5460adbc87c4e98bcce09763 Fix cursor drawn position with wide glyphs --- diff --git a/dmenu.c b/dmenu.c index 314256f..d764658 100644 --- a/dmenu.c +++ b/dmenu.c @@ -144,7 +144,7 @@ drawmenu(void) drw_setscheme(drw, scheme[SchemeNorm]); drw_text(drw, x, 0, w, bh, lrpad / 2, text, 0); - drw_font_getexts(drw->fonts, text, cursor, &curpos, NULL); + curpos = TEXTW(text) - TEXTW(&text[cursor]); if ((curpos += lrpad / 2 - 1) < w) { drw_setscheme(drw, scheme[SchemeNorm]); drw_rect(drw, x + curpos, 2, 2, bh - 4, 1, 0);