mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 16:59:53 +09:00
Apply further refactoring to star rating display UX-wise
This commit is contained in:
@ -178,11 +178,7 @@ namespace osu.Game.Screens.Play
|
||||
};
|
||||
|
||||
starDifficulty = difficultyCache.GetBindableDifficulty(beatmap.BeatmapInfo);
|
||||
starDifficulty.BindValueChanged(difficulty =>
|
||||
{
|
||||
if (difficulty.NewValue.HasValue)
|
||||
starRatingDisplay.Current.Value = difficulty.NewValue.Value;
|
||||
}, true);
|
||||
starDifficulty.BindValueChanged(d => starRatingDisplay.Current.Value = d.NewValue, true);
|
||||
|
||||
Loading = true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user