Fix tab background not fading

This commit is contained in:
DrabWeb 2017-06-01 08:16:53 -03:00
parent ecb0c2f68f
commit 24b3ec7787

View File

@ -249,7 +249,7 @@ namespace osu.Game.Overlays
{
chatContainer.Height = (float)h;
channelSelection.Height = 1f - (float)h;
tabBackground.FadeTo(Height == 1 ? 1 : 0.8f, 200);
tabBackground.FadeTo(h == 1 ? 1 : 0.8f, 200);
};
chatHeight.TriggerChange();