1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-28 02:25:29 +08:00

Always play pop in sequence

This commit is contained in:
Bartłomiej Dach
2022-04-04 20:02:47 +02:00
Unverified
parent 57b8c32f25
commit 9b367d645d
+4 -3
View File
@@ -29,6 +29,8 @@ namespace osu.Game.Overlays.Mods
[Cached]
public Bindable<IReadOnlyList<Mod>> SelectedMods { get; private set; } = new Bindable<IReadOnlyList<Mod>>(Array.Empty<Mod>());
protected override bool StartHidden => true;
private readonly BindableBool customisationVisible = new BindableBool();
private DifficultyMultiplierDisplay multiplierDisplay;
@@ -164,7 +166,8 @@ namespace osu.Game.Overlays.Mods
modSettingsArea = new ModSettingsArea
{
Anchor = Anchor.BottomCentre,
Origin = Anchor.BottomCentre
Origin = Anchor.BottomCentre,
Height = 0
}
};
@@ -190,8 +193,6 @@ namespace osu.Game.Overlays.Mods
}
customisationVisible.BindValueChanged(_ => updateCustomisationVisualState(), true);
FinishTransforms(true);
}
private void updateMultiplier()