summaryrefslogtreecommitdiffstats
path: root/editor/editor_inspector.cpp
diff options
context:
space:
mode:
authorChristopher Briggs <christophertbriggs@gmail.com>2024-11-12 16:33:00 -0500
committerRémi Verschelde <rverschelde@gmail.com>2024-11-15 11:01:34 +0100
commitd1ba15219759e8a7c59d6848a2241b498cf13972 (patch)
treee308403b74eddaba4b06c2bb13e8165777b90e21 /editor/editor_inspector.cpp
parent76fa7b291455a8ba24c50005072ebdb58f8a5984 (diff)
downloadredot-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.cpp2
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 {