##// END OF EJS Templates
crecord: fix if -> elif when handling key presses...
Kyle Lippincott -
r42771:3be6ff55 default
parent child Browse files
Show More
@@ -1724,7 +1724,7 b' are you sure you want to review/edit and'
1724 1724 keypressed = pycompat.bytestr(keypressed)
1725 1725 if keypressed in ["k", "KEY_UP"]:
1726 1726 self.uparrowevent()
1727 if keypressed in ["K", "KEY_PPAGE"]:
1727 elif keypressed in ["K", "KEY_PPAGE"]:
1728 1728 self.uparrowshiftevent()
1729 1729 elif keypressed in ["j", "KEY_DOWN"]:
1730 1730 self.downarrowevent()
General Comments 0
You need to be logged in to leave comments. Login now