Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions editor/gui/editor_quick_open_dialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -235,11 +235,13 @@ void EditorQuickOpenDialog::preview_property() {
// MultiNodeEdit has adding to the undo/redo stack baked into its set function.
// As such, we have to specifically call a version of its setter that doesn't
// create undo/redo actions.
property_object->set_block_signals(true);
if (Object::cast_to<MultiNodeEdit>(property_object)) {
Object::cast_to<MultiNodeEdit>(property_object)->_set_impl(property_path, loaded_resource, "", false);
} else {
property_object->set(property_path, loaded_resource);
}
property_object->set_block_signals(false);
}

void EditorQuickOpenDialog::update_property() {
Expand Down