mirror of
https://github.com/osukey/osukey.git
synced 2025-08-08 00:53:56 +09:00
Remove redundant lambda signature parentheses
This commit is contained in:
@ -371,7 +371,7 @@ namespace osu.Game.Screens.Play
|
|||||||
IsBreakTime.BindTo(breakTracker.IsBreakTime);
|
IsBreakTime.BindTo(breakTracker.IsBreakTime);
|
||||||
IsBreakTime.BindValueChanged(onBreakTimeChanged, true);
|
IsBreakTime.BindValueChanged(onBreakTimeChanged, true);
|
||||||
|
|
||||||
skipIntroOverlay.IsSkippable.ValueChanged += (e) =>
|
skipIntroOverlay.IsSkippable.ValueChanged += e =>
|
||||||
{
|
{
|
||||||
if (RestartedViaHotkey && e.NewValue && RestartCount > 0)
|
if (RestartedViaHotkey && e.NewValue && RestartCount > 0)
|
||||||
skipIntroOverlay.RequestSkip.Invoke();
|
skipIntroOverlay.RequestSkip.Invoke();
|
||||||
|
Reference in New Issue
Block a user