summaryrefslogtreecommitdiffstats
path: root/scene/property_list_helper.cpp
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2024-02-22 13:52:12 +0100
committerkobewi <kobewi4e@gmail.com>2024-02-22 15:05:19 +0100
commit5473c7e2224c489fde7375155d67e4470e7d1c81 (patch)
treed44fc062fd3ddeb1707aeeea37f9fc37269b0c46 /scene/property_list_helper.cpp
parent8bad68df1a9504075450fbefe4f21fa8b2e9cf64 (diff)
downloadredot-engine-5473c7e2224c489fde7375155d67e4470e7d1c81.tar.gz
Fix implementation of property_can_revert() in PropertyListHelper
Diffstat (limited to 'scene/property_list_helper.cpp')
-rw-r--r--scene/property_list_helper.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/scene/property_list_helper.cpp b/scene/property_list_helper.cpp
index 2d3179d9fd..d9a80011b0 100644
--- a/scene/property_list_helper.cpp
+++ b/scene/property_list_helper.cpp
@@ -111,12 +111,7 @@ bool PropertyListHelper::property_set_value(const String &p_property, const Vari
bool PropertyListHelper::property_can_revert(const String &p_property) const {
int index;
- const Property *property = _get_property(p_property, &index);
-
- if (property) {
- return _call_getter(property->getter, index) != property->default_value;
- }
- return false;
+ return _get_property(p_property, &index) != nullptr;
}
bool PropertyListHelper::property_get_revert(const String &p_property, Variant &r_value) const {