Fix `MatchSettingsOverlay` not resetting focus on hide properly

This commit is contained in:
Salman Ahmed 2021-08-17 08:56:49 +03:00
parent 66e33b3704
commit 3a7b9bf096
1 changed files with 2 additions and 0 deletions

View File

@ -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);
}