|
@@ -2399,6 +2399,7 @@ Control::CursorShape TextEdit::get_cursor_shape(const Point2 &p_pos) const {
|
|
}
|
|
}
|
|
|
|
|
|
String TextEdit::get_tooltip(const Point2 &p_pos) const {
|
|
String TextEdit::get_tooltip(const Point2 &p_pos) const {
|
|
|
|
+ Object *tooltip_obj = ObjectDB::get_instance(tooltip_obj_id);
|
|
if (!tooltip_obj) {
|
|
if (!tooltip_obj) {
|
|
return Control::get_tooltip(p_pos);
|
|
return Control::get_tooltip(p_pos);
|
|
}
|
|
}
|
|
@@ -2421,7 +2422,8 @@ String TextEdit::get_tooltip(const Point2 &p_pos) const {
|
|
}
|
|
}
|
|
|
|
|
|
void TextEdit::set_tooltip_request_func(Object *p_obj, const StringName &p_function, const Variant &p_udata) {
|
|
void TextEdit::set_tooltip_request_func(Object *p_obj, const StringName &p_function, const Variant &p_udata) {
|
|
- tooltip_obj = p_obj;
|
|
|
|
|
|
+ ERR_FAIL_NULL(p_obj);
|
|
|
|
+ tooltip_obj_id = p_obj->get_instance_id();
|
|
tooltip_func = p_function;
|
|
tooltip_func = p_function;
|
|
tooltip_ud = p_udata;
|
|
tooltip_ud = p_udata;
|
|
}
|
|
}
|