Fix weird reverse logic

This commit is contained in:
Dean Herbert
2020-03-07 16:29:11 +09:00
parent 01e32896ee
commit aed52179f0
2 changed files with 5 additions and 5 deletions

View File

@ -92,13 +92,13 @@ namespace osu.Game.Online.Chat
textbox.Text = string.Empty;
}
public void Contract()
public void Expand()
{
this.FadeIn(300);
this.MoveToY(0, 500, Easing.OutQuint);
}
public void Expand()
public void Contract()
{
this.FadeOut(200);
this.MoveToY(100, 500, Easing.In);