From 400450f193fba0da39fbc86fb8e3033f9e897dc6 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 11 Sep 2019 14:25:31 +0530 Subject: [PATCH] Fix down key in flow mode acting as up key --- src/pyj/read_book/flow_mode.pyj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyj/read_book/flow_mode.pyj b/src/pyj/read_book/flow_mode.pyj index c35ef1f79c..36d4431ee2 100644 --- a/src/pyj/read_book/flow_mode.pyj +++ b/src/pyj/read_book/flow_mode.pyj @@ -128,7 +128,7 @@ def scroll_by_page(direction): def handle_shortcut(sc_name, evt): if sc_name is 'down': - smooth_y_scroll(True) + smooth_y_scroll(False) return True if sc_name is 'up': smooth_y_scroll(True)