Redraw selection in tty_draw_line, so it appears when redrawing whole

pane. Reported by Theo Buehler.
This commit is contained in:
nicm
2016-10-12 13:24:07 +00:00
parent 68bebe1fb7
commit 4160df4ca4
4 changed files with 25 additions and 7 deletions

2
tmux.h
View File

@ -2060,6 +2060,8 @@ void screen_set_selection(struct screen *,
u_int, u_int, u_int, u_int, u_int, struct grid_cell *);
void screen_clear_selection(struct screen *);
int screen_check_selection(struct screen *, u_int, u_int);
void screen_select_cell(struct screen *, struct grid_cell *,
const struct grid_cell *);
/* window.c */
extern struct windows windows;