Add popup-style and popup-border-style options, from Alexis Hildebrandt

in GitHub issue 2927.
This commit is contained in:
nicm
2021-10-13 09:28:36 +00:00
parent b8581ec80e
commit 837ca176d1
7 changed files with 59 additions and 10 deletions

View File

@ -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);