1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-25 03:09:54 +08:00

Merge pull request #10392 from peppy/fix-editor-seek-modifier

Seek at 4x normal speed when holding shift (not 2x)
This commit is contained in:
Dan Balasescu
2020-10-06 19:19:41 +09:00
committed by GitHub
Unverified
+1 -1
View File
@@ -589,7 +589,7 @@ namespace osu.Game.Screens.Edit
private void seek(UIEvent e, int direction)
{
double amount = e.ShiftPressed ? 2 : 1;
double amount = e.ShiftPressed ? 4 : 1;
if (direction < 1)
clock.SeekBackward(!clock.IsRunning, amount);