Set default flow mode scroll wheel internal file boundary delay to 0.5 seconds

Is sufficiently non-disruptive that I feel making it a default is
acceptable.
This commit is contained in:
Kovid Goyal 2024-11-06 13:12:19 +05:30
parent 790ef52578
commit 37dd0f5c70
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 2 additions and 2 deletions

View File

@ -119,7 +119,7 @@ def create_scrolling_panel(container, apply_func, cancel_func):
),
*spinner(
'scroll_mouse_boundary_delay',
_('Seconds to pause when mouse-scrolling past internal file boundaries'),
_('Seconds to pause when mouse-scrolling past internal file boundaries:'),
title=_('Set to zero to scroll past internal file boundaries without delay'),
step=0.25,
min=MIN_SCROLL_MOUSE_DELAY,

View File

@ -55,7 +55,7 @@ all_settings = {
'paged_pixel_scroll_threshold': {'default': 60, 'category': 'read_book'},
'read_mode': {'default': 'paged', 'category': 'read_book', 'is_local': True},
'scroll_auto_boundary_delay': {'default': 5, 'category': 'read_book', 'is_local': True},
'scroll_mouse_boundary_delay': {'default': 0, 'category': 'read_book', 'is_local': True},
'scroll_mouse_boundary_delay': {'default': 0.5, 'category': 'read_book', 'is_local': True},
'scroll_stop_boundaries': {'default': False, 'category': 'read_book', 'is_local': True},
'standalone_font_settings': {'default': {}, 'category': 'read_book', 'is_local': True},
'standalone_misc_settings': {'default': {}, 'category': 'read_book', 'is_local': True},