summaryrefslogtreecommitdiffstats
path: root/scene/property_list_helper.cpp
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2024-08-20 12:38:33 +0200
committerkobewi <kobewi4e@gmail.com>2024-08-20 15:33:21 +0200
commit5279fec60fb183029795a1ed621eafa405eea67d (patch)
treeec2e67f2e84902694532b17c390cc8897b20ba87 /scene/property_list_helper.cpp
parent826de7976a6add282c7b14d4be2a7e6d775821d8 (diff)
downloadredot-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.cpp2
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);
}