diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2021-12-03 16:23:32 +0100 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2022-01-07 15:48:37 +0100 |
commit | 98b147b319883e874f3b0987b11368aee22a52f4 (patch) | |
tree | b82d19f8b1b3c017bae1b9e47c6cf987e4224790 /editor/editor_properties.h | |
parent | fcc2648e18f0b6bcfd2b4e70829078346dc74b36 (diff) | |
download | redot-engine-98b147b319883e874f3b0987b11368aee22a52f4.tar.gz |
[Editor] Fix inspector keying signals argument count.
The second parameter of the signals `EditorInspector.property_keyed` and
`EditorProperty.property_keyed_with_value` can be NIL, causing the event
to fire with less arguments when using `emit_signal` that accepts
Variant arguments, so we use the pointer version instead.
Diffstat (limited to 'editor/editor_properties.h')
-rw-r--r-- | editor/editor_properties.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_properties.h b/editor/editor_properties.h index 0dfedde250..e62f6823a3 100644 --- a/editor/editor_properties.h +++ b/editor/editor_properties.h @@ -666,7 +666,7 @@ class EditorPropertyResource : public EditorProperty { void _viewport_selected(const NodePath &p_path); - void _sub_inspector_property_keyed(const String &p_property, const Variant &p_value, bool); + void _sub_inspector_property_keyed(const String &p_property, const Variant &p_value, bool p_advance); void _sub_inspector_resource_selected(const RES &p_resource, const String &p_property); void _sub_inspector_object_id_selected(int p_id); |