[UX] Adds "Enable back history" menu item (#4443)

For a hidden setting already present, and used in
/apps/reader/modules/readerback.lua
Only shown, as the whole Navigation> submenu, on
devices with keys.
pull/4445/head
poire-z 5 years ago committed by Frans de Jonge
parent 6de5927dc2
commit 41b885f073

@ -190,6 +190,15 @@ if Device:hasKeys() then
},
},
},
{
text = _("Enable back history"),
checked_func = function()
return G_reader_settings:nilOrTrue("enable_back_history")
end,
callback = function()
G_reader_settings:flipNilOrTrue("enable_back_history")
end,
},
}
}
end

Loading…
Cancel
Save