Submitter | phabricator |
---|---|
Date | March 14, 2019, 2:36 a.m. |
Message ID | <differential-rev-PHID-DREV-34wybazfbgeu5uwti643-req@phab.mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/39243/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/mercurial/crecord.py b/mercurial/crecord.py --- a/mercurial/crecord.py +++ b/mercurial/crecord.py @@ -1729,8 +1729,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): """