mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Style fixes
This commit is contained in:
@ -68,10 +68,7 @@ namespace osu.Game.Overlays.Settings.Sections
|
||||
usableSkins = skins.GetAllUsableSkins().ToArray();
|
||||
|
||||
skinDropdown.Bindable = dropdownBindable;
|
||||
if (usableSkins.Length > 1)
|
||||
skinDropdown.Items = usableSkins.Concat(new[] { random_skin_info });
|
||||
else
|
||||
skinDropdown.Items = usableSkins;
|
||||
skinDropdown.Items = usableSkins.Length > 1 ? usableSkins.Concat(new[] { random_skin_info }) : usableSkins;
|
||||
|
||||
// Todo: This should not be necessary when OsuConfigManager is databased
|
||||
if (skinDropdown.Items.All(s => s.ID != configBindable.Value))
|
||||
|
Reference in New Issue
Block a user