mirror of
https://github.com/tmux/tmux.git
synced 2024-12-12 17:38:48 +00:00
screen_write_fast_copy can no longer assume the target screen is default
(it isn't for the pane status lines).
This commit is contained in:
parent
09f71ed1b2
commit
06d58b3b7b
@ -324,7 +324,7 @@ screen_write_copy(struct screen_write_ctx *ctx, struct screen *src, u_int px,
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* Copy from another screen but without the selection stuff. Also assumes the
|
* Copy from another screen but without the selection stuff. Also assumes the
|
||||||
* target region is already big enough and already cleared.
|
* target region is already big enough.
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
screen_write_fast_copy(struct screen_write_ctx *ctx, struct screen *src,
|
screen_write_fast_copy(struct screen_write_ctx *ctx, struct screen *src,
|
||||||
@ -349,8 +349,7 @@ screen_write_fast_copy(struct screen_write_ctx *ctx, struct screen *src,
|
|||||||
grid_get_cell(gd, xx, yy, &gc);
|
grid_get_cell(gd, xx, yy, &gc);
|
||||||
if (xx + gc.data.width > px + nx)
|
if (xx + gc.data.width > px + nx)
|
||||||
break;
|
break;
|
||||||
if (!grid_cells_equal(&gc, &grid_default_cell))
|
grid_view_set_cell(ctx->s->grid, cx, cy, &gc);
|
||||||
grid_view_set_cell(ctx->s->grid, cx, cy, &gc);
|
|
||||||
cx++;
|
cx++;
|
||||||
}
|
}
|
||||||
cy++;
|
cy++;
|
||||||
|
Loading…
Reference in New Issue
Block a user