From b6c968d206c5f1d4b40a52f4aae2e0b1640e3c2a Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Tue, 28 Jan 2014 08:43:54 -0500 Subject: [PATCH] Restore cursor position after changing help line --- newt.c | 1 + 1 file changed, 1 insertion(+) diff --git a/newt.c b/newt.c index be32108..1a913a0 100644 --- a/newt.c +++ b/newt.c @@ -1063,6 +1063,7 @@ void newtRedrawHelpLine(void) { } SLsmg_gotorc(SLtt_Screen_Rows - 1, 0); SLsmg_write_string(buf); + SLsmg_gotorc(cursorRow, cursorCol); } void newtPushHelpLine(const char * text) { -- 2.47.3