Submitter | phabricator |
---|---|
Date | March 20, 2019, 6:08 p.m. |
Message ID | <95277cfbfc1d4533c7eda2c1919f9f31@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/39345/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/crecord.py b/mercurial/crecord.py --- a/mercurial/crecord.py +++ b/mercurial/crecord.py @@ -1730,8 +1730,11 @@ self.stdscr.clear() self.stdscr.refresh() elif curses.unctrl(keypressed) in ["^L"]: - # scroll the current line to the top of the screen + # scroll the current line to the top of the screen, and redraw + # everything self.scrolllines(self.selecteditemstartline) + self.stdscr.clear() + self.stdscr.refresh() def main(self, stdscr): """