]> git.wh0rd.org Git - nano.git/commitdiff
Fix cursor not on after resize
authorChris Allegretta <chrisa@asty.org>
Mon, 29 Jan 2001 23:40:43 +0000 (23:40 +0000)
committerChris Allegretta <chrisa@asty.org>
Mon, 29 Jan 2001 23:40:43 +0000 (23:40 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@510 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

nano.c

diff --git a/nano.c b/nano.c
index 3d812719dcc3e91e5ee0c24c9668075e4e395ac3..8c342e446702a6a35bcd4bc90c17343394b88159 100644 (file)
--- a/nano.c
+++ b/nano.c
@@ -1616,6 +1616,9 @@ void handle_sigwinch(int s)
     blank_statusbar();
     total_refresh();
 
+    /* Turn cursor back on for sure */
+    curs_set(1);
+
     /* Jump back to mainloop */
     siglongjmp(jmpbuf, 1);