feat(mosstank): add VTank-style automation PoC
This commit is contained in:
parent
f6fe0f2a4f
commit
4e6e9bc9d9
212 changed files with 49462 additions and 416 deletions
|
|
@ -74,7 +74,9 @@ public sealed class UiMenu : UiElement
|
|||
string? live = TooltipTextProvider?.Invoke();
|
||||
if (!string.IsNullOrWhiteSpace(live))
|
||||
return live;
|
||||
return string.IsNullOrWhiteSpace(TooltipText) ? null : TooltipText;
|
||||
return string.IsNullOrWhiteSpace(TooltipText)
|
||||
? base.GetTooltipText()
|
||||
: TooltipText;
|
||||
}
|
||||
|
||||
public int RowsPerColumn { get; set; } = 7; // items per column (dat item template);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue