mirror of
https://github.com/godotengine/godot.git
synced 2024-12-15 10:12:40 +08:00
Merge pull request #59955 from lufog/add_folder_fix
This commit is contained in:
commit
9d3c8f04d4
@ -1432,7 +1432,7 @@ void FileSystemDock::_make_dir_confirm() {
|
||||
Error err = da->change_dir(directory);
|
||||
ERR_FAIL_COND_MSG(err != OK, "Cannot open directory '" + directory + "'.");
|
||||
|
||||
if (da->dir_exists(directory)) {
|
||||
if (da->dir_exists(dir_name)) {
|
||||
EditorNode::get_singleton()->show_warning(TTR("Could not create folder. File with that name already exists."));
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user