1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 06:57:39 +08:00

Update frramework again

This commit is contained in:
Dean Herbert 2018-04-13 21:46:17 +09:00
parent 9f5a52b641
commit a0f9f8d512
3 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit b210a4bd42ac24e94fa29aaaa29f7fd6bc149b12
Subproject commit 34172ef057a696f19e109bfb9230a25b4bb993f6

View File

@ -439,7 +439,7 @@ namespace osu.Game
sensitivity.Value = 1;
sensitivity.Disabled = true;
frameworkConfig.Set(FrameworkSetting.IgnoredInputHandler, string.Empty);
frameworkConfig.Set(FrameworkSetting.IgnoredInputHandlers, string.Empty);
frameworkConfig.GetBindable<ConfineMouseMode>(FrameworkSetting.ConfineMouseMode).SetDefault();
return true;
case GlobalAction.ToggleToolbar:

View File

@ -64,7 +64,7 @@ namespace osu.Game.Overlays.Settings.Sections.Input
ignoredInputHandler.Value = enabled ? standard_mouse_handler : raw_mouse_handler;
};
ignoredInputHandler = config.GetBindable<string>(FrameworkSetting.IgnoredInputHandler);
ignoredInputHandler = config.GetBindable<string>(FrameworkSetting.IgnoredInputHandlers);
ignoredInputHandler.ValueChanged += handler =>
{
bool raw = !handler.Contains("Raw");