tastudio: show cursor hotkey
This commit is contained in:
parent
0a554a984f
commit
93f78a69d2
|
@ -221,6 +221,7 @@ namespace BizHawk.Client.Common
|
|||
|
||||
Bind("TAStudio", "Add Branch", "Alt+Insert"),
|
||||
Bind("TAStudio", "Delete Branch", "Alt+Delete"),
|
||||
Bind("TAStudio", "Show Cursor"),
|
||||
Bind("TAStudio", "Toggle Follow Cursor", "Shift+F"),
|
||||
Bind("TAStudio", "Toggle Auto-Restore", "Shift+R"),
|
||||
Bind("TAStudio", "Toggle Turbo Seek", "Shift+S"),
|
||||
|
|
|
@ -362,6 +362,13 @@ namespace BizHawk.Client.EmuHawk
|
|||
if (GlobalWin.Tools.IsLoaded<TAStudio>())
|
||||
GlobalWin.Tools.TAStudio.RemoveBranchExtrenal();
|
||||
break;
|
||||
case "Show Cursor":
|
||||
if (GlobalWin.Tools.IsLoaded<TAStudio>())
|
||||
{
|
||||
GlobalWin.Tools.TAStudio.SetVisibleIndex();
|
||||
GlobalWin.Tools.TAStudio.RefreshDialog();
|
||||
}
|
||||
break;
|
||||
case "Toggle Follow Cursor":
|
||||
if (GlobalWin.Tools.IsLoaded<TAStudio>())
|
||||
GlobalWin.Tools.TAStudio.TasPlaybackBox.FollowCursor ^= true;
|
||||
|
|
Loading…
Reference in New Issue