mirror of https://github.com/ppy/osu
Fix `MatchSettingsOverlay` not resetting focus on hide properly
This commit is contained in:
parent
66e33b3704
commit
3a7b9bf096
|
@ -41,11 +41,13 @@ private void load()
|
|||
|
||||
protected override void PopIn()
|
||||
{
|
||||
base.PopIn();
|
||||
Settings.MoveToY(0, TRANSITION_DURATION, Easing.OutQuint);
|
||||
}
|
||||
|
||||
protected override void PopOut()
|
||||
{
|
||||
base.PopOut();
|
||||
Settings.MoveToY(-1, TRANSITION_DURATION, Easing.InSine);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue