Quote:
Originally Posted by akadimka
Hi Iņigo!
Seems like a found a bug or maybe I just do something in a wrong way.
In this version v0.12.10 of FBReader in Preferences on the Scrolling tab I can't setup scroll 100% of page per one flip. Max is 20 lines. In previous version v0.10.7 I could use percentage to define how much of page I need to scroll at once.
Could you tell me how to do this in latest version (if it's possible)? Or if this not implemented then could you put back this possibility? Percentage is more acceptable then number of lines because of font size -> this leads to various numbers of lines at the same time.
BR, aKaDiMkA
|
I don't know much about the internals of FBReader so don't know which are the exact changes between v0.10.x and v0.12.x.
Anyway, there are now different scroll actions you could bind for the different keys, Preferences->Keys:
Code:
PAGE_SCROLL_FORWARD = "pageForward";
PAGE_SCROLL_BACKWARD = "pageBackward";
LINE_SCROLL_FORWARD = "lineForward";
LINE_SCROLL_BACKWARD = "lineBackward";
MOUSE_SCROLL_FORWARD = "mouseScrollForward";
MOUSE_SCROLL_BACKWARD = "mouseScrollBackward";
TAP_SCROLL_FORWARD = "tapScrollForward";
TAP_SCROLL_BACKWARD = "tapScrollBackward";
SCROLL_TO_HOME = "gotoHome";
SCROLL_TO_START_OF_TEXT = "gotoSectionStart";
SCROLL_TO_END_OF_TEXT = "gotoSectionEnd";
This works perfectly for me:
left (up arrow) -> Scroll page backward
right (down arrow) -> Scroll page forward
long left (page up) -> go to previous TOC section
long right (page down) -> go to next TOC section
return -> toggle fullscreen
Also look at messages #14-18 in
https://www.mobileread.com/forums/sho...=109786&page=2
Hope it helps,
Iņigo