diff options
author | nicm <nicm> | 2021-10-13 09:28:36 +0000 |
---|---|---|
committer | nicm <nicm> | 2021-10-13 09:28:36 +0000 |
commit | 837ca176d1874273f3de615c75b506e1b1787a1b (patch) | |
tree | c219d8f8cf7399437e4285d713735991636b82cb /window-tree.c | |
parent | b8581ec80e5339be5e2c08cfec70a77f21ba06b2 (diff) | |
download | rtmux-837ca176d1874273f3de615c75b506e1b1787a1b.tar.gz rtmux-837ca176d1874273f3de615c75b506e1b1787a1b.tar.bz2 rtmux-837ca176d1874273f3de615c75b506e1b1787a1b.zip |
Add popup-style and popup-border-style options, from Alexis Hildebrandt
in GitHub issue 2927.
Diffstat (limited to 'window-tree.c')
-rw-r--r-- | window-tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/window-tree.c b/window-tree.c index e7029d33..a721f1b5 100644 --- a/window-tree.c +++ b/window-tree.c @@ -519,7 +519,7 @@ window_tree_draw_label(struct screen_write_ctx *ctx, u_int px, u_int py, if (ox > 1 && ox + len < sx - 1 && sy >= 3) { screen_write_cursormove(ctx, px + ox - 1, py + oy - 1, 0); - screen_write_box(ctx, len + 2, 3); + screen_write_box(ctx, len + 2, 3, NULL); } screen_write_cursormove(ctx, px + ox, py + oy, 0); screen_write_puts(ctx, gc, "%s", label); |