diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-08-22 12:43:14 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-08-23 14:58:28 +0300 |
commit | 56101080cc05f6eb2fc782f6443c99f0669d00f6 (patch) | |
tree | 5f34eb7c9daac68fc97a3009471d783b6d2b0c0e /editor | |
parent | 14f8a54a3371df91327dbe2fc52c42a3616fcab0 (diff) | |
download | redot-engine-56101080cc05f6eb2fc782f6443c99f0669d00f6.tar.gz |
[GDExtension] Fix `_property_can_revert` and `_property_get_revert` methods using incorrect string type.
Diffstat (limited to 'editor')
-rw-r--r-- | editor/editor_sectioned_inspector.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/editor_sectioned_inspector.cpp b/editor/editor_sectioned_inspector.cpp index cbca3e9dcd..1faefb5af7 100644 --- a/editor/editor_sectioned_inspector.cpp +++ b/editor/editor_sectioned_inspector.cpp @@ -113,11 +113,11 @@ class SectionedInspectorFilter : public Object { } } - bool property_can_revert(const String &p_name) { + bool property_can_revert(const StringName &p_name) { return edited->property_can_revert(section + "/" + p_name); } - Variant property_get_revert(const String &p_name) { + Variant property_get_revert(const StringName &p_name) { return edited->property_get_revert(section + "/" + p_name); } |