diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-11-15 10:42:43 -0600 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-11-15 10:42:43 -0600 |
commit | a52e28436eaa089ee37d15134596b2e8d5cf27a6 (patch) | |
tree | d7a8d685073aebc1359b447ae76fee48cee2a659 /editor | |
parent | 6c9337de36a2f7afdd4cae64cd96ad11a1e81462 (diff) | |
parent | d1ba15219759e8a7c59d6848a2241b498cf13972 (diff) | |
download | redot-engine-a52e28436eaa089ee37d15134596b2e8d5cf27a6.tar.gz |
Merge pull request #99148 from TopherBriggs/keyframe_crash_fix
Fix crash when inserting keyframes with empty properties array
Diffstat (limited to 'editor')
-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 { |