Fix down key in flow mode acting as up key

This commit is contained in:
Kovid Goyal 2019-09-11 14:25:31 +05:30
parent d04234555d
commit 400450f193
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -128,7 +128,7 @@ def scroll_by_page(direction):
def handle_shortcut(sc_name, evt): def handle_shortcut(sc_name, evt):
if sc_name is 'down': if sc_name is 'down':
smooth_y_scroll(True) smooth_y_scroll(False)
return True return True
if sc_name is 'up': if sc_name is 'up':
smooth_y_scroll(True) smooth_y_scroll(True)