Increase help tooltip maximum characters to 1400

This commit is contained in:
Serhii Snitsaruk 2023-09-28 13:57:27 +02:00
parent f4289ca839
commit 0c325e3660
2 changed files with 5 additions and 5 deletions

View File

@ -5,10 +5,10 @@
</brief_description> </brief_description>
<description> <description>
BTProbabilitySelector chooses a child task to execute based on attached probabilities. It is typically used for decision-making purposes. Probability distribution is calculated based on weights assigned to each child task. BTProbabilitySelector chooses a child task to execute based on attached probabilities. It is typically used for decision-making purposes. Probability distribution is calculated based on weights assigned to each child task.
Returns [code]SUCCESS[/code] when a child task returns [code]SUCCESS[/code]. Returns [code]SUCCESS[/code] when a child task results in [code]SUCCESS[/code].
Returns [code]RUNNING[/code] when a child task returns [code]RUNNING[/code]. Returns [code]RUNNING[/code] when a child task results in [code]RUNNING[/code].
The behavior of BTProbabilitySelector when a child task results in [code]FAILURE[/code] depends on the value of the [member abort_on_failure] property: The behavior of BTProbabilitySelector when a child task results in [code]FAILURE[/code] depends on the [member abort_on_failure] value:
- If [member abort_on_failure] is [code]false[/code], when a child task results in [code]FAILURE[/code], BTProbabilitySelector will normalize the probability distribution over the remaiming children and choose a new child task to be executed. If all child tasks fail, the composite will return [code]FAILURE[/code]. - If [member abort_on_failure] is [code]false[/code], when a child task results in [code]FAILURE[/code], BTProbabilitySelector will normalize the probability distribution over the remaining children and choose a new child task to be executed. If all child tasks fail, the composite will return [code]FAILURE[/code].
- If [member abort_on_failure] is [code]true[/code], when a child task results in [code]FAILURE[/code], BTProbabilitySelector will not choose another child task to be executed and will immediately return [code]FAILURE[/code]. - If [member abort_on_failure] is [code]true[/code], when a child task results in [code]FAILURE[/code], BTProbabilitySelector will not choose another child task to be executed and will immediately return [code]FAILURE[/code].
</description> </description>
<tutorials> <tutorials>

View File

@ -402,7 +402,7 @@ void TaskPalette::refresh() {
String descr; String descr;
if (E) { if (E) {
if (E->value.description.is_empty() || E->value.description.length() > 1000) { if (E->value.description.is_empty() || E->value.description.length() > 1400) {
descr = DTR(E->value.brief_description); descr = DTR(E->value.brief_description);
} else { } else {
descr = DTR(E->value.description); descr = DTR(E->value.description);