filemanager: add multiple collections

reviewable/pr11693/r1
hius07 2 weeks ago committed by GitHub
parent 1ab8965b70
commit 979dc7bcb3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -520,6 +520,17 @@ function FileManager:tapPlus()
title = actions_enabled and T(N_("1 file selected", "%1 files selected", select_count), select_count)
or _("No files selected")
buttons = {
{
{
text = _("Add to collections"),
enabled = actions_enabled,
callback = function()
UIManager:close(self.file_dialog)
self.collections:onShowCollList(self.selected_files)
self:onToggleSelectMode()
end,
},
},
{
{
text = _("Show selected files list"),

Loading…
Cancel
Save