diff options
author | Kabiir <kabiirk@gmail.com> | 2023-02-06 00:32:50 +0530 |
---|---|---|
committer | Kabiir <kabiirk@gmail.com> | 2023-02-07 02:29:28 +0530 |
commit | 17ee6fcf03978a8ddfd67020af034ad1d3b7656c (patch) | |
tree | 21eb3d76a774091799e948c52e8e114e957d37a9 /scene | |
parent | 5964e4c202980f5530bc62d448962c6e71f4dcb5 (diff) |
Fix description and argument name in Control._has_point
Diffstat (limited to 'scene')
-rw-r--r-- | scene/gui/control.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/control.cpp b/scene/gui/control.cpp index a930b8d972..ec75fcb665 100644 --- a/scene/gui/control.cpp +++ b/scene/gui/control.cpp @@ -3392,7 +3392,7 @@ void Control::_bind_methods() { ADD_SIGNAL(MethodInfo("minimum_size_changed")); ADD_SIGNAL(MethodInfo("theme_changed")); - GDVIRTUAL_BIND(_has_point, "position"); + GDVIRTUAL_BIND(_has_point, "point"); GDVIRTUAL_BIND(_structured_text_parser, "args", "text"); GDVIRTUAL_BIND(_get_minimum_size); |