summaryrefslogtreecommitdiff
path: root/pkg/dmenu
diff options
context:
space:
mode:
authorNihal Jere <nihal@nihaljere.xyz>2021-06-26 19:13:11 -0500
committerMichael Forney <mforney@mforney.org>2021-06-26 23:20:19 -0700
commitf508bb9489cbb85619ddf3259fdbf4cb98145618 (patch)
treeaf303428e9aae5399646c6db91377bb1ede42366 /pkg/dmenu
parent198a8744e01dceafff1fc7f79bb0ebee00b1f5d7 (diff)
dmenu: fix unfilled rectangle drawing in wld port of libdrw
Diffstat (limited to 'pkg/dmenu')
-rw-r--r--pkg/dmenu/patch/0001-Port-to-wayland-using-wld-and-swc-panels.patch2
-rw-r--r--pkg/dmenu/ver2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkg/dmenu/patch/0001-Port-to-wayland-using-wld-and-swc-panels.patch b/pkg/dmenu/patch/0001-Port-to-wayland-using-wld-and-swc-panels.patch
index d2a7f29f..a1d723fe 100644
--- a/pkg/dmenu/patch/0001-Port-to-wayland-using-wld-and-swc-panels.patch
+++ b/pkg/dmenu/patch/0001-Port-to-wayland-using-wld-and-swc-panels.patch
@@ -1083,7 +1083,7 @@ index 8fd1ca4..e4995a6 100644
+ wld_fill_rectangle(drw->renderer, color, x, y, w, 1);
+ wld_fill_rectangle(drw->renderer, color, x + w - 1, y + 1, 1, h - 2);
+ wld_fill_rectangle(drw->renderer, color, x, y + 1, 1, h - 2);
-+ wld_fill_rectangle(drw->renderer, color, x, y - 1, w, 1);
++ wld_fill_rectangle(drw->renderer, color, x, y + h - 1, w, 1);
+ }
}
diff --git a/pkg/dmenu/ver b/pkg/dmenu/ver
index 8a847e91..68769021 100644
--- a/pkg/dmenu/ver
+++ b/pkg/dmenu/ver
@@ -1 +1 @@
-4.9 r3
+4.9 r4