mirror of
https://github.com/mintycube/dmenu.git
synced 2024-10-22 14:05:48 +02:00
fuzzyhighlight: correcting sign for deducting lrpad
This commit is contained in:
parent
ae643ff68d
commit
872a3623d0
@ -43,7 +43,7 @@ drawhighlights(struct item *item, int x, int y, int maxw)
|
||||
drw,
|
||||
x + indent + (lrpad / 2),
|
||||
y,
|
||||
MIN(maxw - indent + lrpad, TEXTW(highlight) - lrpad),
|
||||
MIN(maxw - indent - lrpad, TEXTW(highlight) - lrpad),
|
||||
bh, 0, highlight, 0
|
||||
#if PANGO_PATCH
|
||||
, True
|
||||
|
Loading…
Reference in New Issue
Block a user