1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 13:37:51 +08:00

rename updateTooltip to updateState

This commit is contained in:
cdwcgt 2022-07-09 00:25:11 +09:00
parent 91f471ebe0
commit d2406242ae
No known key found for this signature in database
GPG Key ID: 144396D01095C3A2

View File

@ -73,7 +73,7 @@ namespace osu.Game.Screens.Play
break; break;
} }
}, true); }, true);
State.BindValueChanged(updateTooltip, true); State.BindValueChanged(updateState, true);
} }
private void saveScore() private void saveScore()
@ -93,7 +93,7 @@ namespace osu.Game.Screens.Play
})); }));
} }
private void updateTooltip(ValueChangedEvent<ImportState> state) private void updateState(ValueChangedEvent<ImportState> state)
{ {
switch (state.NewValue) switch (state.NewValue)
{ {