summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-08-23 21:37:52 +0200
committerGitHub <noreply@github.com>2022-08-23 21:37:52 +0200
commit34aa6b06a7002469ee54541067ce3c39bf42815a (patch)
treea630152960ad7aac1c354c13aaa95c572fa72a32 /editor
parentfc0b6abe52cb4e3312a4a9161849614184cf2d3b (diff)
parent56101080cc05f6eb2fc782f6443c99f0669d00f6 (diff)
Merge pull request #64721 from bruvzg/fix_prop_revet_ext
Diffstat (limited to 'editor')
-rw-r--r--editor/editor_sectioned_inspector.cpp4
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);
}