fix CI issues

This commit is contained in:
Jorolf
2017-08-09 18:57:55 +02:00
parent 7f5270b4e1
commit c2c9095b02
3 changed files with 2 additions and 3 deletions

View File

@ -159,7 +159,7 @@ namespace osu.Game.Overlays.Profile.Sections
showMoreText.Show();
}
public void ShowMore() => showMoreText.Alpha = Children.Where(d => !d.IsPresent).Where((d, i) => (d.Alpha = (i < 5 ? 1 : 0)) == 0).Any() ? 1 : 0;
public void ShowMore() => showMoreText.Alpha = Children.Where(d => !d.IsPresent).Where((d, i) => (d.Alpha = i < 5 ? 1 : 0) == 0).Any() ? 1 : 0;
}
}
}