mirror of
https://github.com/koreader/koreader
synced 2024-11-10 01:10:34 +00:00
47 lines
1.6 KiB
Lua
47 lines
1.6 KiB
Lua
local UIManager = require("ui/uimanager")
|
|
local _ = require("gettext")
|
|
|
|
return {
|
|
text = _("Activate menu"),
|
|
sub_item_table = {
|
|
{
|
|
text = _("With a tap"),
|
|
checked_func = function()
|
|
return G_reader_settings:readSetting("activate_menu") ~= "swipe"
|
|
end,
|
|
callback = function()
|
|
if G_reader_settings:readSetting("activate_menu") ~= "swipe" then
|
|
G_reader_settings:saveSetting("activate_menu", "swipe")
|
|
else
|
|
G_reader_settings:saveSetting("activate_menu", "swipe_tap")
|
|
end
|
|
UIManager:askForRestart()
|
|
end,
|
|
},
|
|
{
|
|
text = _("With a swipe"),
|
|
checked_func = function()
|
|
return G_reader_settings:readSetting("activate_menu") ~= "tap"
|
|
end,
|
|
callback = function()
|
|
if G_reader_settings:readSetting("activate_menu") ~= "tap" then
|
|
G_reader_settings:saveSetting("activate_menu", "tap")
|
|
else
|
|
G_reader_settings:saveSetting("activate_menu", "swipe_tap")
|
|
end
|
|
UIManager:askForRestart()
|
|
end,
|
|
separator = true,
|
|
},
|
|
{
|
|
text = _("Auto-show bottom menu"),
|
|
checked_func = function()
|
|
return G_reader_settings:nilOrTrue("show_bottom_menu")
|
|
end,
|
|
callback = function()
|
|
G_reader_settings:flipNilOrTrue("show_bottom_menu")
|
|
end,
|
|
},
|
|
}
|
|
}
|