Merge branch 'master' into more-inspections

This commit is contained in:
Dean Herbert
2019-02-28 14:32:57 +09:00
committed by GitHub
130 changed files with 290 additions and 317 deletions

View File

@ -318,7 +318,7 @@ namespace osu.Game.Overlays.Profile
public User User
{
get { return user; }
get => user;
set
{
user = value;

View File

@ -78,7 +78,7 @@ namespace osu.Game.Overlays.Profile.Sections.Kudosu
public new int Count
{
set { valueText.Text = value.ToString(); }
set => valueText.Text = value.ToString();
}
public CountSection(string header, string description)