From 5279fec60fb183029795a1ed621eafa405eea67d Mon Sep 17 00:00:00 2001 From: kobewi Date: Tue, 20 Aug 2024 12:38:33 +0200 Subject: Always store ID of PopupMenu items --- scene/property_list_helper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scene/property_list_helper.cpp') diff --git a/scene/property_list_helper.cpp b/scene/property_list_helper.cpp index f840aaa759..c6c21e0dba 100644 --- a/scene/property_list_helper.cpp +++ b/scene/property_list_helper.cpp @@ -142,7 +142,7 @@ void PropertyListHelper::get_property_list(List *p_list) const { const Property &property = E.value; PropertyInfo info = property.info; - if (_call_getter(&property, i) == property.default_value) { + if (!(info.usage & PROPERTY_USAGE_STORE_IF_NULL) && _call_getter(&property, i) == property.default_value) { info.usage &= (~PROPERTY_USAGE_STORAGE); } -- cgit v1.2.3