Remove forced redraw in ncurses ui
This commit is contained in:
parent
1d646c03f5
commit
b02883a112
|
@ -286,7 +286,6 @@ void NCursesUI::Window::refresh()
|
||||||
if (not win)
|
if (not win)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
redrawwin(win);
|
|
||||||
CharCoord max_pos = pos + size - CharCoord{1,1};
|
CharCoord max_pos = pos + size - CharCoord{1,1};
|
||||||
pnoutrefresh(win, 0, 0, (int)pos.line, (int)pos.column,
|
pnoutrefresh(win, 0, 0, (int)pos.line, (int)pos.column,
|
||||||
(int)max_pos.line, (int)max_pos.column);
|
(int)max_pos.line, (int)max_pos.column);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user