From 5b29f1b9273bf64d239b3e89eb4b57dee7ae759f Mon Sep 17 00:00:00 2001 From: yparitcher Date: Thu, 2 Jun 2022 17:59:29 -0400 Subject: [PATCH] Page turn animations: add to dispatcher (#9160) For real this time :) See #9123 https://www.mobileread.com/forums/showthread.php?p=4226937#post4226937 --- frontend/dispatcher.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/dispatcher.lua b/frontend/dispatcher.lua index 571f657f2..8f97ca450 100644 --- a/frontend/dispatcher.lua +++ b/frontend/dispatcher.lua @@ -129,7 +129,7 @@ local settingsList = { book_cover = {category="none", event="ShowBookCover", title=_("Book cover"), reader=true, separator=true}, show_config_menu = {category="none", event="ShowConfigMenu", title=_("Show bottom menu"), reader=true}, toggle_bookmark = {category="none", event="ToggleBookmark", title=_("Toggle bookmark"), reader=true}, - toggle_page_change_Animation = {category="none", event="TogglePageChangeAnimation", title=_("Toggle page turn animations"), reader=true, condition=Device:canDoSwipeAnimation()}, + toggle_page_change_animation = {category="none", event="TogglePageChangeAnimation", title=_("Toggle page turn animations"), reader=true, condition=Device:canDoSwipeAnimation()}, toggle_inverse_reading_order = {category="none", event="ToggleReadingOrder", title=_("Toggle page turn direction"), reader=true, separator=true}, cycle_highlight_action = {category="none", event="CycleHighlightAction", title=_("Cycle highlight action"), reader=true}, cycle_highlight_style = {category="none", event="CycleHighlightStyle", title=_("Cycle highlight style"), reader=true}, @@ -307,6 +307,7 @@ local dispatcher_menu_order = { "font_kerning", "toggle_bookmark", + "toggle_page_change_animation", "toggle_page_flipping", "toggle_reflow", "toggle_inverse_reading_order",