mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Use value where applicable
This commit is contained in:
@ -62,6 +62,6 @@ namespace osu.Game.Graphics.UserInterface
|
|||||||
fill.Width = value * UsableWidth;
|
fill.Width = value * UsableWidth;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void OnUserChange(double value) => OnSeek?.Invoke(Current);
|
protected override void OnUserChange(double value) => OnSeek?.Invoke(value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -112,6 +112,6 @@ namespace osu.Game.Screens.Play
|
|||||||
handleBase.X = xFill;
|
handleBase.X = xFill;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void OnUserChange(double value) => OnSeek?.Invoke(Current);
|
protected override void OnUserChange(double value) => OnSeek?.Invoke(value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user