1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-05 10:23:20 +08:00

changed defaults back to density

this should fix tests failing
This commit is contained in:
Givikap120 2024-10-23 12:43:43 +03:00
parent 174df35125
commit 4c128c7925
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ namespace osu.Game.Screens.Play.HUD
private const float bar_height = 10;
[SettingSource(typeof(SongProgressStrings), nameof(SongProgressStrings.GraphType), nameof(SongProgressStrings.GraphTypeDescription))]
public Bindable<DifficultyGraphType> GraphType { get; } = new Bindable<DifficultyGraphType>(DifficultyGraphType.Difficulty);
public Bindable<DifficultyGraphType> GraphType { get; } = new Bindable<DifficultyGraphType>(DifficultyGraphType.ObjectDensity);
[SettingSource(typeof(SongProgressStrings), nameof(SongProgressStrings.ShowTime), nameof(SongProgressStrings.ShowTimeDescription))]
public Bindable<bool> ShowTime { get; } = new BindableBool(true);

View File

@ -32,7 +32,7 @@ namespace osu.Game.Screens.Play.HUD
private readonly Container content;
[SettingSource(typeof(SongProgressStrings), nameof(SongProgressStrings.GraphType), nameof(SongProgressStrings.GraphTypeDescription))]
public Bindable<DifficultyGraphType> GraphType { get; } = new Bindable<DifficultyGraphType>(DifficultyGraphType.Difficulty);
public Bindable<DifficultyGraphType> GraphType { get; } = new Bindable<DifficultyGraphType>(DifficultyGraphType.ObjectDensity);
[SettingSource(typeof(SongProgressStrings), nameof(SongProgressStrings.ShowTime), nameof(SongProgressStrings.ShowTimeDescription))]
public Bindable<bool> ShowTime { get; } = new BindableBool(true);