We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
TAStudio.MenuItems.cs
1 parent d98c3c2 commit 1c84b2bCopy full SHA for 1c84b2b
1 file changed
src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs
@@ -164,13 +164,11 @@ private void SaveSelectionToMacroMenuItem_Click(object sender, EventArgs e)
164
165
if (file != null)
166
{
167
- var selectionStart = TasView.SelectionStartIndex!.Value;
+ var selectionStart = FirstSelectedRowIndex;
168
new MovieZone(
169
- Emulator,
170
- Tools,
171
- MovieSession,
+ CurrentTasMovie,
172
start: selectionStart,
173
- length: TasView.SelectionEndIndex!.Value - selectionStart + 1)
+ length: endIndex - selectionStart + 1)
174
.Save(file.FullName);
175
176
Config.RecentMacros.Add(file.FullName);
0 commit comments