Skip to content

Commit

Permalink
Rebind "convert to stream" to Ctrl-Shift-X
Browse files Browse the repository at this point in the history
  • Loading branch information
LBlend committed Oct 12, 2024
1 parent 70e3cb1 commit 508bb23
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ private void convertToStream()
{
InputManager.PressKey(Key.LControl);
InputManager.PressKey(Key.LShift);
InputManager.Key(Key.Z);
InputManager.Key(Key.X);
InputManager.ReleaseKey(Key.LShift);
InputManager.ReleaseKey(Key.LControl);
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ protected override bool OnKeyDown(KeyDownEvent e)
if (!IsSelected)
return false;

if (e.Key == Key.F && e.ControlPressed && e.ShiftPressed)
if (e.Key == Key.X && e.ControlPressed && e.ShiftPressed)
{
convertToStream();
return true;
Expand Down Expand Up @@ -600,7 +600,7 @@ private void convertToStream()
},
new OsuMenuItem("Convert to stream", MenuItemType.Destructive, convertToStream)
{
Hotkey = new Hotkey(new KeyCombination(InputKey.Control, InputKey.Shift, InputKey.Z))
Hotkey = new Hotkey(new KeyCombination(InputKey.Control, InputKey.Shift, InputKey.X))
},
};

Expand Down

0 comments on commit 508bb23

Please sign in to comment.