mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 07:06:35 +09:00
Fixes private method name capitalization
This commit is contained in:
@ -206,7 +206,7 @@ namespace osu.Game.Overlays
|
||||
Anchor = Anchor.BottomCentre,
|
||||
Height = progress_height,
|
||||
FillColour = colours.Yellow,
|
||||
OnSeek = progress => ConditionalSeek(progress)
|
||||
OnSeek = progress => conditionalSeek(progress)
|
||||
}
|
||||
},
|
||||
},
|
||||
@ -219,7 +219,7 @@ namespace osu.Game.Overlays
|
||||
playlist.StateChanged += s => playlistButton.FadeColour(s == Visibility.Visible ? colours.Yellow : Color4.White, 200, Easing.OutQuint);
|
||||
}
|
||||
|
||||
private bool? ConditionalSeek(double progress)
|
||||
private bool? conditionalSeek(double progress)
|
||||
{
|
||||
if (current.Track.Looping)
|
||||
return current?.Track.Seek(progress);
|
||||
|
Reference in New Issue
Block a user