diff options
author | kobewi <kobewi4e@gmail.com> | 2024-08-20 12:38:33 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2024-08-20 15:33:21 +0200 |
commit | 5279fec60fb183029795a1ed621eafa405eea67d (patch) | |
tree | ec2e67f2e84902694532b17c390cc8897b20ba87 /scene/property_list_helper.cpp | |
parent | 826de7976a6add282c7b14d4be2a7e6d775821d8 (diff) | |
download | redot-engine-5279fec60fb183029795a1ed621eafa405eea67d.tar.gz |
Always store ID of PopupMenu items
Diffstat (limited to 'scene/property_list_helper.cpp')
-rw-r--r-- | scene/property_list_helper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<PropertyInfo> *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); } |