1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 07:27:25 +08:00

Fixes private method name capitalization

This commit is contained in:
Jacob Odgård Tørring 2018-05-10 11:29:19 +02:00
parent bb6478cdc3
commit 5b99d8df62

View File

@ -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);