##// END OF EJS Templates
crecord: redraw the screen on ctrl-L...
Kyle Lippincott -
r42159:fa3b0ca9 default
parent child Browse files
Show More
@@ -1730,8 +1730,11 b' are you sure you want to review/edit and'
1730 1730 self.stdscr.clear()
1731 1731 self.stdscr.refresh()
1732 1732 elif curses.unctrl(keypressed) in ["^L"]:
1733 # scroll the current line to the top of the screen
1733 # scroll the current line to the top of the screen, and redraw
1734 # everything
1734 1735 self.scrolllines(self.selecteditemstartline)
1736 self.stdscr.clear()
1737 self.stdscr.refresh()
1735 1738
1736 1739 def main(self, stdscr):
1737 1740 """
General Comments 0
You need to be logged in to leave comments. Login now