diff options
author | Christopher Briggs <christophertbriggs@gmail.com> | 2024-11-12 16:33:00 -0500 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-11-15 11:01:34 +0100 |
commit | d1ba15219759e8a7c59d6848a2241b498cf13972 (patch) | |
tree | e308403b74eddaba4b06c2bb13e8165777b90e21 /editor/editor_inspector.cpp | |
parent | 76fa7b291455a8ba24c50005072ebdb58f8a5984 (diff) | |
download | redot-engine-d1ba15219759e8a7c59d6848a2241b498cf13972.tar.gz |
Fix crash when inserting keyframes with empty properties array
Diffstat (limited to 'editor/editor_inspector.cpp')
-rw-r--r-- | editor/editor_inspector.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_inspector.cpp b/editor/editor_inspector.cpp index 1c23ce8ede..fa5a059aa0 100644 --- a/editor/editor_inspector.cpp +++ b/editor/editor_inspector.cpp @@ -2724,7 +2724,7 @@ void EditorInspector::_parse_added_editors(VBoxContainer *current_vbox, EditorIn for (const EditorInspectorPlugin::AddedEditor &F : ped->added_editors) { EditorProperty *ep = Object::cast_to<EditorProperty>(F.property_editor); - if (ep && current_favorites.has(F.properties[0])) { + if (ep && !F.properties.is_empty() && current_favorites.has(F.properties[0])) { ep->favorited = true; favorites_vbox->add_child(F.property_editor); } else { |