Merge remote-tracking branch 'upstream/master' into database-tidy

This commit is contained in:
Dean Herbert
2017-07-27 17:40:25 +09:00
3 changed files with 7 additions and 4 deletions

View File

@ -86,7 +86,7 @@ namespace osu.Game.Screens.Select
requestedBeatmap.Metrics = res;
Schedule(() => updateMetrics(res));
};
lookup.Failure += e => updateMetrics(null);
lookup.Failure += e => Schedule(() => updateMetrics(null));
api.Queue(lookup);
loading.Show();