From 82d612906378a443c40fb7b3eae31d5227e7a7f4 Mon Sep 17 00:00:00 2001 From: Jorolf Date: Tue, 21 Mar 2017 17:16:23 +0100 Subject: [PATCH] renamed CursorSize to MenuCursorSize --- osu.Game/Configuration/OsuConfigManager.cs | 4 ++-- osu.Game/Graphics/Cursor/MenuCursor.cs | 2 +- osu.Game/Overlays/Options/Sections/SkinSection.cs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/osu.Game/Configuration/OsuConfigManager.cs b/osu.Game/Configuration/OsuConfigManager.cs index f7d5e69fd3..1442a26a06 100644 --- a/osu.Game/Configuration/OsuConfigManager.cs +++ b/osu.Game/Configuration/OsuConfigManager.cs @@ -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, diff --git a/osu.Game/Graphics/Cursor/MenuCursor.cs b/osu.Game/Graphics/Cursor/MenuCursor.cs index 1447fa9417..e2144d50ef 100644 --- a/osu.Game/Graphics/Cursor/MenuCursor.cs +++ b/osu.Game/Graphics/Cursor/MenuCursor.cs @@ -84,7 +84,7 @@ namespace osu.Game.Graphics.Cursor [BackgroundDependencyLoader] private void load(OsuConfigManager config, TextureStore textures, OsuColour colour) { - cursorScale = config.GetBindable(OsuConfig.CursorSize); + cursorScale = config.GetBindable(OsuConfig.MenuCursorSize); Children = new Drawable[] { diff --git a/osu.Game/Overlays/Options/Sections/SkinSection.cs b/osu.Game/Overlays/Options/Sections/SkinSection.cs index bca4016401..0ee561c1ad 100644 --- a/osu.Game/Overlays/Options/Sections/SkinSection.cs +++ b/osu.Game/Overlays/Options/Sections/SkinSection.cs @@ -62,7 +62,7 @@ namespace osu.Game.Overlays.Options.Sections new OptionSlider { LabelText = "Menu cursor size", - Bindable = (BindableDouble)config.GetBindable(OsuConfig.CursorSize) + Bindable = (BindableDouble)config.GetBindable(OsuConfig.MenuCursorSize) }, new OptionSlider {