Forward entire event to IModHotkeyHandler

Required for shift handling in the classic implementation.
This commit is contained in:
Bartłomiej Dach
2022-06-21 13:37:17 +02:00
parent 143c8e8da6
commit 234120ff43
5 changed files with 13 additions and 12 deletions

View File

@ -432,7 +432,7 @@ namespace osu.Game.Overlays.Mods
if (e.ControlPressed || e.AltPressed || e.SuperPressed || e.Repeat)
return false;
return hotkeyHandler.HandleHotkeyPressed(e.Key, availableMods);
return hotkeyHandler.HandleHotkeyPressed(e, availableMods);
}
#endregion