1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 12:42:54 +08:00

Rename showLastStep method to avoid ambiguity

This commit is contained in:
Dean Herbert 2022-04-20 14:49:17 +09:00
parent 488fc9db67
commit 9797e2d887

View File

@ -200,7 +200,7 @@ namespace osu.Game.Overlays
{ {
Width = 200, Width = 200,
Text = CommonStrings.Back, Text = CommonStrings.Back,
Action = showLastStep, Action = showPreviousStep,
Enabled = { Value = false }, Enabled = { Value = false },
}, },
Empty(), Empty(),
@ -336,7 +336,7 @@ namespace osu.Game.Overlays
showNextStep(); showNextStep();
} }
private void showLastStep() private void showPreviousStep()
{ {
if (currentStepIndex == 0) if (currentStepIndex == 0)
return; return;