More sorting rookie mistakes

This commit is contained in:
Alex Amadori
2017-02-18 16:23:13 +01:00
parent f48c83b787
commit 21cf96ec10
2 changed files with 12 additions and 4 deletions

View File

@ -56,7 +56,15 @@ namespace osu.Game.Screens.Select
private FilterControl filter;
public FilterControl Filter {
get; private set;
get {
return filter;
}
private set {
if (filter != value) {
filter = value;
filterChanged();
}
}
}
Player player;