1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 20:22:55 +08:00

Fix match settings not showing

This commit is contained in:
smoogipoo 2019-02-06 18:50:43 +09:00
parent 3207983a1c
commit 4f86fe92ea

View File

@ -164,7 +164,7 @@ namespace osu.Game.Screens.Multi.Match
},
};
header.Tabs.Current.ValueChanged += t =>
header.Tabs.Current.BindValueChanged(t =>
{
const float fade_duration = 500;
if (t is SettingsMatchPage)
@ -179,7 +179,7 @@ namespace osu.Game.Screens.Multi.Match
info.FadeIn(fade_duration, Easing.OutQuint);
bottomRow.FadeIn(fade_duration, Easing.OutQuint);
}
};
}, true);
chat.Exit += () => RequestExit?.Invoke();