mirror of
git://git.sv.gnu.org/nano.git
synced 2024-11-25 22:29:42 +03:00
tweaks: don't redraw the help lines (if present), and normalize a brace
This commit is contained in:
parent
bbed065fa8
commit
c9fb1cf85a
@ -2561,7 +2561,7 @@ int main(int argc, char **argv)
|
|||||||
edit_scroll(FORWARD);
|
edit_scroll(FORWARD);
|
||||||
wnoutrefresh(edit);
|
wnoutrefresh(edit);
|
||||||
}
|
}
|
||||||
redrawwin(bottomwin);
|
wredrawln(bottomwin, 0 ,1);
|
||||||
wnoutrefresh(bottomwin);
|
wnoutrefresh(bottomwin);
|
||||||
place_the_cursor();
|
place_the_cursor();
|
||||||
} else if (ISSET(ZERO) && lastmessage > VACUUM)
|
} else if (ISSET(ZERO) && lastmessage > VACUUM)
|
||||||
|
@ -1703,8 +1703,7 @@ void check_statusblank(void)
|
|||||||
wipe_statusbar();
|
wipe_statusbar();
|
||||||
|
|
||||||
/* When windows overlap, make sure to show the edit window now. */
|
/* When windows overlap, make sure to show the edit window now. */
|
||||||
if (currmenu == MMAIN && (ISSET(ZERO) || LINES == 1))
|
if (currmenu == MMAIN && (ISSET(ZERO) || LINES == 1)) {
|
||||||
{
|
|
||||||
wredrawln(edit, editwinrows - 1, 1);
|
wredrawln(edit, editwinrows - 1, 1);
|
||||||
wnoutrefresh(edit);
|
wnoutrefresh(edit);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user