removed some unused stuff

This commit is contained in:
Jorolf
2017-04-07 18:24:36 +02:00
parent 187a0e3613
commit 9881889f88
3 changed files with 2 additions and 65 deletions

View File

@ -24,7 +24,6 @@ namespace osu.Game.Screens.Select
private APIAccess api;
private WorkingBeatmap beatmap;
public WorkingBeatmap Beatmap
{
get
@ -34,11 +33,8 @@ namespace osu.Game.Screens.Select
set
{
beatmap = value;
if (IsLoaded)
if (currentTab == BeatmapDetailTab.Details)
Schedule(updateDetails);
else
Schedule(updateScores);
Schedule(updateDetails);
Schedule(updateScores);
}
}