1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-08 08:33:49 +08:00

Fix publicly-settable bindables

This commit is contained in:
Dean Herbert
2023-10-06 16:51:24 +09:00
Unverified
parent cc6210035f
commit f2e56bbb65
8 changed files with 16 additions and 16 deletions
@@ -47,7 +47,7 @@ namespace osu.Game.Graphics.Containers
/// <summary>
/// The amount of dim to be used when <see cref="IgnoreUserSettings"/> is <c>true</c>.
/// </summary>
public Bindable<float> DimWhenUserSettingsIgnored { get; set; } = new Bindable<float>();
public Bindable<float> DimWhenUserSettingsIgnored { get; } = new Bindable<float>();
protected Bindable<bool> LightenDuringBreaks { get; private set; } = null!;