diff --git a/base b/base index ffdcfc5e5..825299559 160000 --- a/base +++ b/base @@ -1 +1 @@ -Subproject commit ffdcfc5e5d91f427002bbd0e51ece7e86cbf8ea1 +Subproject commit 825299559d39ed4abdf17c00008938a7d00a7532 diff --git a/frontend/ui/widget/filechooser.lua b/frontend/ui/widget/filechooser.lua index cdd2a0939..e0f663def 100644 --- a/frontend/ui/widget/filechooser.lua +++ b/frontend/ui/widget/filechooser.lua @@ -17,8 +17,6 @@ local function strcoll(str1, str2) end local FileChooser = Menu:extend{ - height = Screen:getHeight(), - width = Screen:getWidth(), no_title = true, path = lfs.currentdir(), parent = nil, @@ -32,6 +30,8 @@ local FileChooser = Menu:extend{ } function FileChooser:init() + self.width = Screen:getWidth() + self.height = Screen:getHeight() -- common dir filter self.dir_filter = function(dirname) for _, pattern in ipairs(self.exclude_dirs) do