Fix to issue #12554, due to error in refactoring in PR #10261

This commit is contained in:
Cradmon 2017-11-01 11:31:13 +00:00
parent 58889102b6
commit 93e8468d92
1 changed files with 3 additions and 3 deletions

View File

@ -595,10 +595,10 @@ void FileSystemDock::_select_file(int p_idx) {
current_path->set_text(path); current_path->set_text(path);
_push_to_history(); _push_to_history();
} else { } else {
if (ResourceLoader::get_resource_type(path) == "PackedScene") { if (ResourceLoader::get_resource_type(fpath) == "PackedScene") {
editor->open_request(path); editor->open_request(fpath);
} else { } else {
editor->load_resource(path); editor->load_resource(fpath);
} }
} }
} }