1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 06:03:08 +08:00

Remove redundant lambda signature parentheses

This commit is contained in:
BlauFx 2022-08-06 18:47:11 +02:00
parent 0d418559bc
commit fa6d55b5b5
No known key found for this signature in database
GPG Key ID: BB73374479D2AA97

View File

@ -371,7 +371,7 @@ namespace osu.Game.Screens.Play
IsBreakTime.BindTo(breakTracker.IsBreakTime);
IsBreakTime.BindValueChanged(onBreakTimeChanged, true);
skipIntroOverlay.IsSkippable.ValueChanged += (e) =>
skipIntroOverlay.IsSkippable.ValueChanged += e =>
{
if (RestartedViaHotkey && e.NewValue && RestartCount > 0)
skipIntroOverlay.RequestSkip.Invoke();