From 2f331ba5c978b62ea74213222af5e5de349c522f Mon Sep 17 00:00:00 2001 From: Mike Lowis Date: Wed, 5 Oct 2016 11:54:31 -0400 Subject: [PATCH] semi-fixed chopping of chars on scroll up --- screen.c | 1 + 1 file changed, 1 insertion(+) diff --git a/screen.c b/screen.c index ed8c63c..2356988 100644 --- a/screen.c +++ b/screen.c @@ -108,6 +108,7 @@ static void scroll_up(Buf* buf, unsigned csr, unsigned first) { fill_row(buf, 1, Rows[1]->off); first = Rows[1]->off; } + screen_reflow(buf); } static void scroll_dn(Buf* buf, unsigned csr, unsigned last) { -- 2.49.0