tastudio: allow to actually unbind markers from input, and unbind by default

This commit is contained in:
feos 2019-01-05 21:48:40 +03:00
parent cd2d63b04a
commit 56e77f4907
2 changed files with 3 additions and 2 deletions

View File

@ -65,7 +65,7 @@ namespace BizHawk.Client.Common
Markers = new TasMovieMarkerList(this);
Markers.CollectionChanged += Markers_CollectionChanged;
Markers.Add(0, startsFromSavestate ? "Savestate" : "Power on");
BindMarkersToInput = true;
BindMarkersToInput = false;
CurrentBranch = -1;
}
@ -84,7 +84,7 @@ namespace BizHawk.Client.Common
Markers = new TasMovieMarkerList(this);
Markers.CollectionChanged += Markers_CollectionChanged;
Markers.Add(0, startsFromSavestate ? "Savestate" : "Power on");
BindMarkersToInput = true;
BindMarkersToInput = false;
CurrentBranch = -1;
}

View File

@ -822,6 +822,7 @@ namespace BizHawk.Client.EmuHawk
SingleClickFloatEditMenuItem.Checked = Settings.SingleClickFloatEdit;
OldControlSchemeForBranchesMenuItem.Checked = Settings.OldControlSchemeForBranches;
LoadBranchOnDoubleclickMenuItem.Checked = Settings.LoadBranchOnDoubleClick;
BindMarkersToInputMenuItem.Checked = CurrentTasMovie.BindMarkersToInput;
}
private void SetMaxUndoLevelsMenuItem_Click(object sender, EventArgs e)