terminal: move print_needs_wrap from grid to terminal

This commit is contained in:
Daniel Eklöf 2019-06-29 21:16:06 +02:00
parent a8f4cb55af
commit 8cff861f38
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
3 changed files with 4 additions and 5 deletions

View file

@ -210,7 +210,7 @@ term_cursor_to(struct terminal *term, int row, int col)
term_damage_update(term, term->cursor.linear, 1);
term_damage_update(term, new_linear, 1);
term->grid.print_needs_wrap = false;
term->print_needs_wrap = false;
term->cursor.linear = new_linear;
term->cursor.col = col;

View file

@ -62,8 +62,6 @@ struct damage {
};
struct grid {
bool print_needs_wrap;
struct cell *cells;
struct cell *normal_grid;
struct cell *alt_grid;
@ -144,6 +142,7 @@ struct terminal {
int cell_width;
int cell_height;
bool print_needs_wrap;
struct scroll_region scroll_region;
struct rgba foreground;

4
vt.c
View file

@ -670,7 +670,7 @@ action(struct terminal *term, enum action action, uint8_t c)
break;
case ACTION_PRINT: {
if (term->grid.print_needs_wrap) {
if (term->print_needs_wrap) {
if (term->cursor.row == term->scroll_region.end - 1) {
term_scroll(term, 1);
term_cursor_to(term, term->cursor.row, 0);
@ -697,7 +697,7 @@ action(struct terminal *term, enum action action, uint8_t c)
if (term->cursor.col < term->cols - 1)
term_cursor_right(term, 1);
else
term->grid.print_needs_wrap = true;
term->print_needs_wrap = true;
break;
}