mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 07:06:35 +09:00
cursorExpand is now a bool
This commit is contained in:
@ -42,7 +42,7 @@ namespace osu.Game.Rulesets.Osu.UI.Cursor
|
||||
[BackgroundDependencyLoader]
|
||||
private void load(ISkinSource source)
|
||||
{
|
||||
cursorExpand = source.GetValue<SkinConfiguration, string>(s => s.CursorExpand).Equals("1");
|
||||
cursorExpand = source.GetValue<SkinConfiguration, bool>(s => s.CursorExpand) ?? true;
|
||||
}
|
||||
|
||||
private int downCount;
|
||||
|
Reference in New Issue
Block a user