From cc18d6dab4db166c205135529cb0858c2c432475 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 26 Feb 2020 11:09:44 +0530 Subject: [PATCH] Widen more limits Fixes #1864789 [[Enhancement] Increase pause time before switching chapter with auto-scrolling](https://bugs.launchpad.net/calibre/+bug/1864789) --- src/pyj/read_book/prefs/scrolling.pyj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pyj/read_book/prefs/scrolling.pyj b/src/pyj/read_book/prefs/scrolling.pyj index d61c597ef9..71a6511eb6 100644 --- a/src/pyj/read_book/prefs/scrolling.pyj +++ b/src/pyj/read_book/prefs/scrolling.pyj @@ -17,10 +17,10 @@ MIN_SCROLL_SPEED_AUTO = 0.05 MAX_SCROLL_SPEED_AUTO = 5 MIN_SCROLL_AUTO_DELAY = -1 -MAX_SCROLL_AUTO_DELAY = 10 +MAX_SCROLL_AUTO_DELAY = 50 -MIN_SCROLL_SPEED_SMOOTH = 10 -MAX_SCROLL_SPEED_SMOOTH = 50 +MIN_SCROLL_SPEED_SMOOTH = 5 +MAX_SCROLL_SPEED_SMOOTH = 80 def restore_defaults(): container = get_container()