parent
022d95434d
commit
2f1fd6fb62
|
@ -60,7 +60,7 @@ void TaskButton::_bind_methods() {
|
||||||
Control *TaskButton::_do_make_tooltip(const String &p_text) const {
|
Control *TaskButton::_do_make_tooltip(const String &p_text) const {
|
||||||
#ifdef LIMBOAI_MODULE
|
#ifdef LIMBOAI_MODULE
|
||||||
EditorHelpBit *help_bit = memnew(EditorHelpBit);
|
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;
|
String help_text;
|
||||||
if (!p_text.is_empty()) {
|
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_text = "[i]" + TTR("No description.") + "[/i]";
|
||||||
}
|
}
|
||||||
|
|
||||||
help_bit->set_text(help_text);
|
help_bit->set_custom_text(String(), String(), help_text);
|
||||||
|
|
||||||
return help_bit;
|
return help_bit;
|
||||||
#endif // LIMBOAI_MODULE
|
#endif // LIMBOAI_MODULE
|
||||||
|
|
Loading…
Reference in New Issue