TAStudio: -Show button name and frame of painted input in undo log.
-Don't scroll to follow cursor while mouse button is held.
This commit is contained in:
parent
00f38094b2
commit
91c12d06b6
|
@ -361,7 +361,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
if (Global.MovieSession.MovieControllerAdapter.Type.BoolButtons.Contains(buttonName))
|
||||
{
|
||||
CurrentTasMovie.ChangeLog.BeginNewBatch("Paint Bool");
|
||||
CurrentTasMovie.ChangeLog.BeginNewBatch("Paint Bool " + buttonName + " from frame " + frame);
|
||||
|
||||
CurrentTasMovie.ToggleBoolState(TasView.CurrentCell.RowIndex.Value, buttonName);
|
||||
_triggerAutoRestore = true;
|
||||
|
@ -406,7 +406,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
if (e.Clicks != 2)
|
||||
{
|
||||
CurrentTasMovie.ChangeLog.BeginNewBatch("Paint Float");
|
||||
CurrentTasMovie.ChangeLog.BeginNewBatch("Paint Float " + buttonName + " from frame " + frame);
|
||||
_startFloatDrawColumn = buttonName;
|
||||
}
|
||||
else // Double-click enters float editing mode
|
||||
|
|
|
@ -115,7 +115,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
private void MaybeFollowCursor()
|
||||
{
|
||||
if (TasPlaybackBox.FollowCursor && !TasView.IsPaintDown)
|
||||
if (TasPlaybackBox.FollowCursor && !mouseButtonHeld)
|
||||
SetVisibleIndex();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue