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 /tmux.h | |
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 'tmux.h')
-rw-r--r-- | tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2699,7 +2699,8 @@ void screen_write_hline(struct screen_write_ctx *, u_int, int, int); void screen_write_vline(struct screen_write_ctx *, u_int, int, int); void screen_write_menu(struct screen_write_ctx *, struct menu *, int, const struct grid_cell *); -void screen_write_box(struct screen_write_ctx *, u_int, u_int); +void screen_write_box(struct screen_write_ctx *, u_int, u_int, + const struct grid_cell *gc); void screen_write_preview(struct screen_write_ctx *, struct screen *, u_int, u_int); void screen_write_backspace(struct screen_write_ctx *); |