mirror of
https://github.com/osukey/osukey.git
synced 2025-06-23 12:18:03 +09:00
Fix beatmap statistics with value of zero not displaying correctly at song select
Closes #13307.
This commit is contained in:
parent
7b88ba8c63
commit
d6656047e3
@ -186,11 +186,11 @@ namespace osu.Game.Screens.Select.Details
|
||||
set => name.Text = value;
|
||||
}
|
||||
|
||||
private (float baseValue, float? adjustedValue) value;
|
||||
private (float baseValue, float? adjustedValue)? value;
|
||||
|
||||
public (float baseValue, float? adjustedValue) Value
|
||||
{
|
||||
get => value;
|
||||
get => value ?? (0, null);
|
||||
set
|
||||
{
|
||||
if (value == this.value)
|
||||
|
Loading…
x
Reference in New Issue
Block a user