Merge pull request #18061 from Chaosus/fixbug

Fix crash when click on any inspector entry that takes Resource
This commit is contained in:
Poommetee Ketson 2018-04-09 00:23:42 +07:00 committed by GitHub
commit 9acc199bf8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -882,7 +882,12 @@ bool CustomPropertyEditor::edit(Object *p_owner, const String &p_name, Variant::
} else if (hint_text != "") {
int idx = 0;
const Vector<EditorData::CustomType> custom_resources = EditorNode::get_editor_data().get_custom_types()["Resource"];
Vector<EditorData::CustomType> custom_resources;
if (EditorNode::get_editor_data().get_custom_types().has("Resource")) {
custom_resources = EditorNode::get_editor_data().get_custom_types()["Resource"];
}
for (int i = 0; i < hint_text.get_slice_count(","); i++) {
String base = hint_text.get_slice(",", i);