mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
filemanagermenu: fix classic mode items per page (#11346)
This commit is contained in:
@@ -172,7 +172,7 @@ function FileManagerMenu:setUpdateItemTable()
|
||||
sub_item_table = {
|
||||
{
|
||||
text_func = function()
|
||||
return T(_("Items per page: %1"), FileChooser.perpage)
|
||||
return T(_("Items per page: %1"), G_reader_settings:readSetting("items_per_page"))
|
||||
end,
|
||||
help_text = _([[This sets the number of items per page in:
|
||||
- File browser, history and favorites in 'classic' display mode
|
||||
@@ -180,7 +180,7 @@ function FileManagerMenu:setUpdateItemTable()
|
||||
- File and folder selection
|
||||
- Calibre and OPDS browsers/search results]]),
|
||||
callback = function(touchmenu_instance)
|
||||
local current_value = FileChooser.perpage
|
||||
local current_value = G_reader_settings:readSetting("items_per_page")
|
||||
local default_value = FileChooser.items_per_page_default
|
||||
local widget = SpinWidget:new{
|
||||
title_text = _("Items per page"),
|
||||
@@ -204,7 +204,7 @@ function FileManagerMenu:setUpdateItemTable()
|
||||
end,
|
||||
callback = function(touchmenu_instance)
|
||||
local current_value = FileChooser.font_size
|
||||
local default_value = FileChooser.getItemFontSize(FileChooser.perpage)
|
||||
local default_value = FileChooser.getItemFontSize(G_reader_settings:readSetting("items_per_page"))
|
||||
local widget = SpinWidget:new{
|
||||
title_text = _("Item font size"),
|
||||
value = current_value,
|
||||
|
||||
Reference in New Issue
Block a user