mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
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:
parent
790ef52578
commit
37dd0f5c70
@ -119,7 +119,7 @@ def create_scrolling_panel(container, apply_func, cancel_func):
|
|||||||
),
|
),
|
||||||
*spinner(
|
*spinner(
|
||||||
'scroll_mouse_boundary_delay',
|
'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'),
|
title=_('Set to zero to scroll past internal file boundaries without delay'),
|
||||||
step=0.25,
|
step=0.25,
|
||||||
min=MIN_SCROLL_MOUSE_DELAY,
|
min=MIN_SCROLL_MOUSE_DELAY,
|
||||||
|
@ -55,7 +55,7 @@ all_settings = {
|
|||||||
'paged_pixel_scroll_threshold': {'default': 60, 'category': 'read_book'},
|
'paged_pixel_scroll_threshold': {'default': 60, 'category': 'read_book'},
|
||||||
'read_mode': {'default': 'paged', 'category': 'read_book', 'is_local': True},
|
'read_mode': {'default': 'paged', 'category': 'read_book', 'is_local': True},
|
||||||
'scroll_auto_boundary_delay': {'default': 5, '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},
|
'scroll_stop_boundaries': {'default': False, 'category': 'read_book', 'is_local': True},
|
||||||
'standalone_font_settings': {'default': {}, '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},
|
'standalone_misc_settings': {'default': {}, 'category': 'read_book', 'is_local': True},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user