mirror of
https://github.com/tmate-io/tmate.git
synced 2024-11-26 10:03:08 +01:00
A screen can be one cell wide; don't crash if that is the case.
This commit is contained in:
parent
9f6d685c05
commit
5d7bff4051
@ -427,8 +427,8 @@ screen_write_initctx(
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
/* Save the last cell on the screen. */
|
/* Save the last cell on the screen. */
|
||||||
gc = NULL;
|
gc = &grid_default_cell;
|
||||||
for (xx = 1; xx < screen_size_x(s); xx++) {
|
for (xx = 1; xx <= screen_size_x(s); xx++) {
|
||||||
gc = grid_view_peek_cell(gd, screen_size_x(s) - xx, s->cy);
|
gc = grid_view_peek_cell(gd, screen_size_x(s) - xx, s->cy);
|
||||||
if (!(gc->flags & GRID_FLAG_PADDING))
|
if (!(gc->flags & GRID_FLAG_PADDING))
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user