mirror of
https://github.com/ppy/osu
synced 2024-12-28 09:52:56 +00:00
renamed CursorSize to MenuCursorSize
This commit is contained in:
parent
80de15d935
commit
82d6129063
@ -23,7 +23,7 @@ namespace osu.Game.Configuration
|
||||
Set(OsuConfig.SavePassword, false);
|
||||
Set(OsuConfig.SaveUsername, true);
|
||||
|
||||
Set(OsuConfig.CursorSize, 1.0, 0.5f, 2);
|
||||
Set(OsuConfig.MenuCursorSize, 1.0, 0.5f, 2);
|
||||
Set(OsuConfig.GameplayCursorSize, 1.0, 0.5f, 2);
|
||||
Set(OsuConfig.DimLevel, 30, 0, 100);
|
||||
|
||||
@ -224,7 +224,7 @@ namespace osu.Game.Configuration
|
||||
ComboFireHeight,
|
||||
ConfirmExit,
|
||||
AutoSendNowPlaying,
|
||||
CursorSize,
|
||||
MenuCursorSize,
|
||||
GameplayCursorSize,
|
||||
AutomaticCursorSizing,
|
||||
DimLevel,
|
||||
|
@ -84,7 +84,7 @@ namespace osu.Game.Graphics.Cursor
|
||||
[BackgroundDependencyLoader]
|
||||
private void load(OsuConfigManager config, TextureStore textures, OsuColour colour)
|
||||
{
|
||||
cursorScale = config.GetBindable<double>(OsuConfig.CursorSize);
|
||||
cursorScale = config.GetBindable<double>(OsuConfig.MenuCursorSize);
|
||||
|
||||
Children = new Drawable[]
|
||||
{
|
||||
|
@ -62,7 +62,7 @@ namespace osu.Game.Overlays.Options.Sections
|
||||
new OptionSlider<double>
|
||||
{
|
||||
LabelText = "Menu cursor size",
|
||||
Bindable = (BindableDouble)config.GetBindable<double>(OsuConfig.CursorSize)
|
||||
Bindable = (BindableDouble)config.GetBindable<double>(OsuConfig.MenuCursorSize)
|
||||
},
|
||||
new OptionSlider<double>
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user