diff --git a/src/ncurses_ui.cc b/src/ncurses_ui.cc index a2364fd3..d7c74940 100644 --- a/src/ncurses_ui.cc +++ b/src/ncurses_ui.cc @@ -444,6 +444,9 @@ void NCursesUI::check_resize(bool force) m_window = (NCursesWin*)newwin(ws.ws_row, ws.ws_col, 0, 0); m_dimensions = CharCoord{ws.ws_row-1, ws.ws_col}; + + if (const char* csr = tigetstr((char*)"csr")) + putp(tiparm(csr, 0, ws.ws_row)); } else kak_assert(false);