Update framework and other nuget dependencies

This commit is contained in:
Dean Herbert
2018-06-26 12:02:04 +09:00
parent 6736f2988e
commit 563cb46b4a
4 changed files with 8 additions and 8 deletions

View File

@ -186,7 +186,7 @@ namespace osu.Game.Overlays.KeyBinding
{
if (bindTarget.IsHovered)
{
bindTarget.UpdateKeyCombination(KeyCombination.FromInputState(state));
bindTarget.UpdateKeyCombination(new KeyCombination(new[] { state.Mouse.ScrollDelta.Y > 0 ? InputKey.MouseWheelUp : InputKey.MouseWheelDown }));
finalise();
return true;
}