1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-13 15:03:13 +08:00

better setting description

This commit is contained in:
Unknown 2019-07-05 08:52:44 +02:00
parent 2d5fd7f1c4
commit ee44caf964
3 changed files with 5 additions and 5 deletions

View File

@ -77,7 +77,7 @@ namespace osu.Game.Configuration
Set(OsuSetting.BlurLevel, 0, 0, 1, 0.01);
Set(OsuSetting.ShowInterface, true);
Set(OsuSetting.CollapseProgressGraph, false);
Set(OsuSetting.ShowProgressGraph, true);
Set(OsuSetting.KeyOverlay, false);
Set(OsuSetting.FloatingComments, false);
@ -132,7 +132,7 @@ namespace osu.Game.Configuration
KeyOverlay,
FloatingComments,
ShowInterface,
CollapseProgressGraph,
ShowProgressGraph,
MouseDisableButtons,
MouseDisableWheel,
AudioOffset,

View File

@ -36,8 +36,8 @@ namespace osu.Game.Overlays.Settings.Sections.Gameplay
},
new SettingsCheckbox
{
LabelText = "Collapse song progress graph",
Bindable = config.GetBindable<bool>(OsuSetting.CollapseProgressGraph)
LabelText = "Show difficulty graph on progress bar",
Bindable = config.GetBindable<bool>(OsuSetting.ShowProgressGraph)
},
new SettingsCheckbox
{

View File

@ -107,7 +107,7 @@ namespace osu.Game.Screens.Play
if (clock != null)
gameplayClock = clock;
config.BindWith(OsuSetting.CollapseProgressGraph, CollapseGraph);
config.BindWith(OsuSetting.ShowProgressGraph, CollapseGraph);
graph.FillColour = bar.FillColour = colours.BlueLighter;
}