Try to display each of the following:
<digits number="1" />
<digits number="0" />
<digits number="10" />
The second one does not display at all. Put them in a lane and there is no space between the first and third either.
I'm guessing this is because number is initiated as 0 here:
|
private readonly DirtyTracker<int> number = new(0); |
and the element seems to be only set to be displayed if that value changes.
Try to display each of the following:
The second one does not display at all. Put them in a lane and there is no space between the first and third either.
I'm guessing this is because number is initiated as 0 here:
StardewUI/Core/Widgets/TinyNumberLabel.cs
Line 81 in 7357664
and the element seems to be only set to be displayed if that value changes.