Fix error in change-project-folder command

This commit is contained in:
Francesco Abbate 2021-09-07 05:21:45 -07:00
parent 368ffca40a
commit 28e8a98ffc
1 changed files with 3 additions and 1 deletions

View File

@ -148,7 +148,9 @@ command.add(nil, {
["core:change-project-folder"] = function()
local dirname = common.dirname(core.project_dir)
core.command_view:set_text(common.home_encode(dirname) .. PATHSEP)
if dirname then
core.command_view:set_text(common.home_encode(dirname) .. PATHSEP)
end
core.command_view:enter("Change Project Folder", function(text, item)
text = system.absolute_path(common.home_expand(item and item.text or text))
if text == core.project_dir then return end