mirror of
https://github.com/osukey/osukey.git
synced 2025-08-08 00:53:56 +09:00
Fix checking for expand incorrectly
This commit is contained in:
@ -126,7 +126,7 @@ namespace osu.Game.Rulesets.Osu.Skinning
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case OsuSkinConfiguration.ExpandNumberPiece:
|
case OsuSkinConfiguration.ExpandNumberPiece:
|
||||||
bool expand = source.GetConfig<LegacySetting, decimal>(LegacySetting.Version)?.Value < 2.0m;
|
bool expand = !(source.GetConfig<LegacySetting, decimal>(LegacySetting.Version)?.Value >= 2.0m);
|
||||||
return SkinUtils.As<TValue>(new BindableBool(expand));
|
return SkinUtils.As<TValue>(new BindableBool(expand));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user