Commit affeda81 authored by Chris Allegretta's avatar Chris Allegretta
Browse files

do_toggle(): - Added fix_editbot() call to fix improper redisplay of edit...

do_toggle(): - Added fix_editbot() call to fix improper redisplay of edit window when using nohelp toggle (bug discovered by Rocco Corsi).


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@414 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 4 additions and 0 deletions
+4 -0
...@@ -38,6 +38,9 @@ General ...@@ -38,6 +38,9 @@ General
- Fix off by one error that was making ^G help in normal mode and - Fix off by one error that was making ^G help in normal mode and
^_ in pico mode not be displayed in the help (bug discovered by ^_ in pico mode not be displayed in the help (bug discovered by
Rocco Corsi). Rocco Corsi).
do_toggle()
- Added fix_editbot() call to fix improper redisplay of edit
window when using nohelp toggle (bug discovered by Rocco Corsi).
- nano.1, nano.1.html: - nano.1, nano.1.html:
- Updated man page for -b, -e, -f and expanded explanation for -p. - Updated man page for -b, -e, -f and expanded explanation for -p.
- utils.c: - utils.c:
......
...@@ -2003,6 +2003,7 @@ void do_toggle(int which) ...@@ -2003,6 +2003,7 @@ void do_toggle(int which)
wclear(bottomwin); wclear(bottomwin);
wrefresh(bottomwin); wrefresh(bottomwin);
window_init(); window_init();
fix_editbot();
edit_refresh(); edit_refresh();
display_main_list(); display_main_list();
break; break;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment