Update EditorHelpBit calls

Due to upstream change:

	a714cb9f65
This commit is contained in:
Wilson E. Alvarez 2024-04-21 16:26:10 -04:00
parent 606b5a9276
commit 2c740e7741
No known key found for this signature in database
GPG Key ID: A32174A3D2ED3F9E
1 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ void TaskButton::_bind_methods() {
Control *TaskButton::_do_make_tooltip(const String &p_text) const {
#ifdef LIMBOAI_MODULE
EditorHelpBit *help_bit = memnew(EditorHelpBit);
help_bit->get_rich_text()->set_custom_minimum_size(Size2(360 * EDSCALE, 1));
help_bit->set_content_height_limits(1, 360 * EDSCALE);
String help_text;
if (!p_text.is_empty()) {
@ -69,7 +69,7 @@ Control *TaskButton::_do_make_tooltip(const String &p_text) const {
help_text = "[i]" + TTR("No description.") + "[/i]";
}
help_bit->set_text(help_text);
help_bit->set_custom_text(String(), String(), help_text);
return help_bit;
#endif // LIMBOAI_MODULE