Originally Posted by Iņigo
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
|