Fix error in change-project-folder command
This commit is contained in:
parent
368ffca40a
commit
28e8a98ffc
|
@ -148,7 +148,9 @@ command.add(nil, {
|
||||||
|
|
||||||
["core:change-project-folder"] = function()
|
["core:change-project-folder"] = function()
|
||||||
local dirname = common.dirname(core.project_dir)
|
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)
|
core.command_view:enter("Change Project Folder", function(text, item)
|
||||||
text = system.absolute_path(common.home_expand(item and item.text or text))
|
text = system.absolute_path(common.home_expand(item and item.text or text))
|
||||||
if text == core.project_dir then return end
|
if text == core.project_dir then return end
|
||||||
|
|
Loading…
Reference in New Issue