diff --git a/screen-write.c b/screen-write.c index 214daa7c..52eb84b3 100644 --- a/screen-write.c +++ b/screen-write.c @@ -624,33 +624,39 @@ screen_write_fast_copy(struct screen_write_ctx *ctx, struct screen *src, struct grid_line *gl, *sgl; struct grid_cell gc; u_int xx, yy, cx = s->cx, cy = s->cy; + int yoff = 0; + struct visible_ranges *r; if (nx == 0 || ny == 0) return; + if (wp != NULL) + yoff = wp->yoff; for (yy = py; yy < py + ny; yy++) { if (yy >= gd->hsize + gd->sy) break; s->cx = cx; - if (wp != NULL) - screen_write_initctx(ctx, &ttyctx, 0, 0); + screen_write_initctx(ctx, &ttyctx, 0, 0); + r = screen_redraw_get_visible_ranges(wp, px, s->cy + yoff, nx, + NULL); for (xx = px; xx < px + nx; xx++) { gl = grid_get_line(gd, yy); - sgl = grid_get_line(ctx->s->grid, s->cy); + sgl = grid_get_line(s->grid, s->cy); if (xx >= gl->cellsize && s->cx >= sgl->cellsize) break; + grid_get_cell(gd, xx, yy, &gc); if (xx + gc.data.width > px + nx) break; - grid_view_set_cell(ctx->s->grid, s->cx, s->cy, &gc); - if (wp == NULL) { - s->cx++; - continue; - } + grid_view_set_cell(s->grid, s->cx, s->cy, &gc); + + if (!screen_redraw_is_visible(r, px)) + break; ttyctx.cell = &gc; ttyctx.flags &= (TTY_CTX_OVERLAY_SYNC|TTY_CTX_SYNC); tty_write(tty_cmd_cell, &ttyctx); ttyctx.ocx++; + s->cx++; } s->cy++; @@ -2351,10 +2357,10 @@ screen_write_cell(struct screen_write_ctx *ctx, const struct grid_cell *gc) const struct utf8_data *ud = &gc->data; struct grid_line *gl; struct grid_cell_entry *gce; - struct grid_cell tmp_gc, now_gc; + struct grid_cell tmp_gc, now_gc; struct tty_ctx ttyctx; u_int sx = screen_size_x(s), sy = screen_size_y(s); - u_int width = ud->width, xx, not_wrap; + u_int width = ud->width, xx, not_wrap; int selected, skip = 1, redraw = 0; /* Ignore padding cells. */ diff --git a/tmux.h b/tmux.h index 17d3b81f..c3f7fff4 100644 --- a/tmux.h +++ b/tmux.h @@ -3421,6 +3421,7 @@ struct window *window_create(u_int, u_int, u_int, u_int); void window_pane_set_event(struct window_pane *); struct window_pane *window_get_active_at(struct window *, u_int, u_int); struct window_pane *window_find_string(struct window *, const char *); +int window_has_floating_panes(struct window *); int window_has_pane(struct window *, struct window_pane *); int window_set_active_pane(struct window *, struct window_pane *, int); diff --git a/window.c b/window.c index d4b97385..dc2d67cc 100644 --- a/window.c +++ b/window.c @@ -461,6 +461,18 @@ window_pane_send_resize(struct window_pane *wp, u_int sx, u_int sy) fatal("ioctl failed"); } +int +window_has_floating_panes(struct window *w) +{ + struct window_pane *wp; + + TAILQ_FOREACH(wp, &w->panes, entry) { + if (wp->flags & PANE_FLOATING) + return (1); + } + return (0); +} + int window_has_pane(struct window *w, struct window_pane *wp) {