Bläddra i källkod

Fix recursive resource inclusion check

I forgot a line of code.

Fixes #71194.
Juan Linietsky 2 år sedan
förälder
incheckning
9a966b95ec
1 ändrade filer med 2 tillägg och 0 borttagningar
  1. 2 0
      editor/editor_properties.cpp

+ 2 - 0
editor/editor_properties.cpp

@@ -3805,6 +3805,8 @@ static bool _find_recursive_resources(const Variant &v, HashSet<Resource *> &res
 					return true;
 				}
 			}
+
+			resources_found.erase(r.ptr());
 		} break;
 		default: {
 		}