From ac1f294bb930a0c05f96197b6a53b883ebc483f2 Mon Sep 17 00:00:00 2001 From: nicm Date: Wed, 8 Feb 2017 15:41:41 +0000 Subject: Add a helper to store a cell, and some tidying. --- screen-redraw.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'screen-redraw.c') diff --git a/screen-redraw.c b/screen-redraw.c index ae2948aa..c2e39410 100644 --- a/screen-redraw.c +++ b/screen-redraw.c @@ -423,6 +423,9 @@ screen_redraw_pane(struct client *c, struct window_pane *wp) if (status_at_line(c) == 0) yoff++; + log_debug("%s: redraw pane %%%u (at %u,%u)", c->tty.path, wp->id, + wp->xoff, yoff); + for (i = 0; i < wp->sy; i++) tty_draw_pane(&c->tty, wp, i, wp->xoff, yoff); tty_reset(&c->tty); -- cgit