mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Reverse directionality of up/down traversal keys to match scroll
This commit is contained in:
@ -499,11 +499,12 @@ namespace osu.Game.Screens.Edit
|
||||
seek(e, 1);
|
||||
return true;
|
||||
|
||||
case Key.Down:
|
||||
// Of those, these two keys are reversed from stable because it feels more natural (and matches mouse wheel scroll directionality).
|
||||
case Key.Up:
|
||||
seekControlPoint(-1);
|
||||
return true;
|
||||
|
||||
case Key.Up:
|
||||
case Key.Down:
|
||||
seekControlPoint(1);
|
||||
return true;
|
||||
|
||||
|
Reference in New Issue
Block a user