diff options
author | kilojool <hoglund.joel@gmail.com> | 2023-02-23 14:36:10 +0100 |
---|---|---|
committer | kilojool <hoglund.joel@gmail.com> | 2023-03-21 17:39:51 +0100 |
commit | a95cd3872aa608dce3edea94e72dfccc18e3c19b (patch) | |
tree | c5d52e93252266400eb4043f3783ac069bd78b9b /scene/gui/control.h | |
parent | e0de3573f3fc86062763152f5a1ac62f5a986da3 (diff) | |
download | redot-engine-a95cd3872aa608dce3edea94e72dfccc18e3c19b.tar.gz |
Add missing virtual bind for control::get_tooltip
Diffstat (limited to 'scene/gui/control.h')
-rw-r--r-- | scene/gui/control.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/gui/control.h b/scene/gui/control.h index 2fb5d559b6..da973783e9 100644 --- a/scene/gui/control.h +++ b/scene/gui/control.h @@ -345,6 +345,7 @@ protected: GDVIRTUAL1RC(bool, _has_point, Vector2) GDVIRTUAL2RC(TypedArray<Vector3i>, _structured_text_parser, Array, String) GDVIRTUAL0RC(Vector2, _get_minimum_size) + GDVIRTUAL1RC(String, _get_tooltip, Vector2) GDVIRTUAL1RC(Variant, _get_drag_data, Vector2) GDVIRTUAL2RC(bool, _can_drop_data, Vector2, Variant) |