Page turn animations

Kindle PW5 (MTK) with hardware support
Currently only in Crengine
This commit is contained in:
yparitcher
2022-04-06 10:42:29 -04:00
parent ca423f2887
commit 54ead5fc88
6 changed files with 30 additions and 1 deletions

View File

@@ -141,6 +141,19 @@ When enabled the UI direction for the Table of Contents, Book Map, and Page Brow
}
}
if Device:canDoSwipeAnimation() then
table.insert(PageTurns.sub_item_table, {
text =_("Page Turn Animations"),
checked_func = function()
return G_reader_settings:isTrue("swipe_animations")
end,
callback = function()
G_reader_settings:flipNilOrFalse("swipe_animations")
end,
separator = true,
})
end
if Device:hasKeys() then
table.insert(PageTurns.sub_item_table, {
text = _("Invert page turn buttons"),