Copy Best Input to Clipboard
Added a Copy button in the Best Attempt group. There is a tooltip on the copy button that explains it literally copies the input and can be put into a text file or into TasStudio.
This commit is contained in:
parent
68a58c1dd5
commit
f7f3f65a19
File diff suppressed because it is too large
Load Diff
|
@ -1355,5 +1355,11 @@ namespace BizHawk.Client.EmuHawk
|
||||||
this._comparisonBotAttempt.TieBreak3 = (int)numericUpDown.Value;
|
this._comparisonBotAttempt.TieBreak3 = (int)numericUpDown.Value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Copy to Clipboard
|
||||||
|
private void btnCopyBestInput_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
Clipboard.SetText(BestAttemptLogLabel.Text);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -139,6 +139,9 @@
|
||||||
TgDQASA1MVpwzwAAAABJRU5ErkJggg==
|
TgDQASA1MVpwzwAAAABJRU5ErkJggg==
|
||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
|
<metadata name="toolTip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>400, 17</value>
|
||||||
|
</metadata>
|
||||||
<metadata name="StatsContextMenu.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<metadata name="StatsContextMenu.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
<value>248, 17</value>
|
<value>248, 17</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
|
Loading…
Reference in New Issue