From 9a966b95ec2f521b1ab3c4e6c8456cfe08bbc08b Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Wed, 11 Jan 2023 18:28:52 +0100 Subject: Fix recursive resource inclusion check I forgot a line of code. Fixes #71194. --- editor/editor_properties.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'editor') diff --git a/editor/editor_properties.cpp b/editor/editor_properties.cpp index 8ef394a59f..3a46ff6168 100644 --- a/editor/editor_properties.cpp +++ b/editor/editor_properties.cpp @@ -3805,6 +3805,8 @@ static bool _find_recursive_resources(const Variant &v, HashSet &res return true; } } + + resources_found.erase(r.ptr()); } break; default: { } -- cgit v1.2.3