[fix] Behave properly on start with shortcuts (#4772)

Regression caused by #4764. Fixes #4768.
pull/4775/head v2019.03.1
Frans de Jonge 5 years ago committed by GitHub
parent fc69257660
commit 644e0d6440
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -206,18 +206,10 @@ if ARGV[argidx] and ARGV[argidx] ~= "" then
end)
elseif start_with == "folder_shortcuts" then
local FileManagerShortcuts = require("apps/filemanager/filemanagershortcuts")
local fm_bookmark = FileManagerShortcuts:new{
title = _("Folder shortcuts"),
show_parent = FileManager,
curr_path = home_dir,
goFolder = function(folder)
if folder ~= nil and lfs.attributes(folder, "mode") == "directory" then
FileManager.instance.file_chooser:changeToPath(folder)
end
end,
}
UIManager:nextTick(function()
UIManager:show(fm_bookmark)
FileManagerShortcuts:new{
ui = FileManager.instance,
}:onShowFolderShortcutsDialog()
end)
end
end

Loading…
Cancel
Save