mirror of
https://github.com/ppy/osu
synced 2024-12-15 19:36:34 +00:00
Fixes private method name capitalization
This commit is contained in:
parent
bb6478cdc3
commit
5b99d8df62
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user