From 78ec605cc64323bb9dbfb88db0d0845418432efb Mon Sep 17 00:00:00 2001 From: nick black Date: Fri, 6 Dec 2019 16:31:00 -0500 Subject: [PATCH] render: revert cleartoeol, as it leads to flicker --- src/lib/notcurses.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/lib/notcurses.c b/src/lib/notcurses.c index 310a48d57..614edcdb9 100644 --- a/src/lib/notcurses.c +++ b/src/lib/notcurses.c @@ -1093,9 +1093,6 @@ notcurses_render_internal(notcurses* nc){ // move to the beginning of the line, in case our accounting was befouled // by wider- (or narrower-) than-reported characters term_emit(tiparm(nc->cup, y, 0), out, false); - if(nc->cleareol){ - term_emit(nc->cleareol, out, false); - } for(x = 0 ; x < nc->stdscr->lenx ; ++x){ unsigned r, g, b, br, bg, bb; ncplane* p = nc->top;