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; const float fade_duration = 500;
if (t is SettingsMatchPage) if (t is SettingsMatchPage)
@ -179,7 +179,7 @@ namespace osu.Game.Screens.Multi.Match
info.FadeIn(fade_duration, Easing.OutQuint); info.FadeIn(fade_duration, Easing.OutQuint);
bottomRow.FadeIn(fade_duration, Easing.OutQuint); bottomRow.FadeIn(fade_duration, Easing.OutQuint);
} }
}; }, true);
chat.Exit += () => RequestExit?.Invoke(); chat.Exit += () => RequestExit?.Invoke();