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:
Suuper 2015-07-25 20:15:35 -05:00
parent 00f38094b2
commit 91c12d06b6
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -115,7 +115,7 @@ namespace BizHawk.Client.EmuHawk
private void MaybeFollowCursor()
{
if (TasPlaybackBox.FollowCursor && !TasView.IsPaintDown)
if (TasPlaybackBox.FollowCursor && !mouseButtonHeld)
SetVisibleIndex();
}
}