TAStudio - Ctrl+Up and Ctrl+Down hotkeys for previous and next frame
This commit is contained in:
parent
a3914e84a4
commit
c82db1384f
|
@ -312,6 +312,14 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
GoToNextMarker();
|
||||
}
|
||||
else if (e.Control && !e.Shift && !e.Alt && e.KeyCode == Keys.Up) // Ctrl + Up
|
||||
{
|
||||
GoToPreviousFrame();
|
||||
}
|
||||
else if (e.Control && !e.Shift && !e.Alt && e.KeyCode == Keys.Down) // Ctrl + Down
|
||||
{
|
||||
GoToNextFrame();
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
|
Loading…
Reference in New Issue