Changes to naming and text

This commit is contained in:
Dean Herbert 2018-04-18 19:26:54 +09:00
parent bd834dd487
commit e395a47112
3 changed files with 5 additions and 5 deletions

View File

@ -86,7 +86,7 @@ protected override void InitialiseDefaults()
Set(OsuSetting.ScreenshotFormat, ScreenshotFormat.Jpg);
Set(OsuSetting.ScreenshotCaptureMenuCursor, false);
Set(OsuSetting.SelectScrollRightClick, false);
Set(OsuSetting.SongSelectRightMouseScroll, false);
}
public OsuConfigManager(Storage storage) : base(storage)
@ -133,6 +133,6 @@ public enum OsuSetting
Skin,
ScreenshotFormat,
ScreenshotCaptureMenuCursor,
SelectScrollRightClick
SongSelectRightMouseScroll
}
}

View File

@ -19,8 +19,8 @@ private void load(OsuConfigManager config)
{
new SettingsCheckbox
{
LabelText = "Right click to scroll",
Bindable = config.GetBindable<bool>(OsuSetting.SelectScrollRightClick),
LabelText = "Right mouse drag to absolute scroll",
Bindable = config.GetBindable<bool>(OsuSetting.SongSelectRightMouseScroll),
},
new SettingsCheckbox
{

View File

@ -125,7 +125,7 @@ public BeatmapCarousel()
private void load(OsuConfigManager config)
{
config.BindWith(OsuSetting.RandomSelectAlgorithm, RandomAlgorithm);
config.BindWith(OsuSetting.SelectScrollRightClick, RightClickScrollingEnabled);
config.BindWith(OsuSetting.SongSelectRightMouseScroll, RightClickScrollingEnabled);
RightClickScrollingEnabled.ValueChanged += v => RightMouseScrollbar = v;
RightClickScrollingEnabled.TriggerChange();