Log window - when copying pasting "MD5:2345" and Sha1, strip the md5 and sha1 out. I just want the number if I'm copying pasting the single line. If someone finds this objectionable, feel free to revert, but this savesme a lot of time
This commit is contained in:
parent
392d126173
commit
e269bfd49f
|
@ -152,7 +152,8 @@ namespace BizHawk.Client.EmuHawk
|
|||
var sb = new StringBuilder();
|
||||
lock(_lines)
|
||||
foreach (int i in virtualListView1.SelectedIndices)
|
||||
sb.AppendLine(_lines[i]);
|
||||
sb.AppendLine(_lines[i].Replace("MD5:", "").Replace("SHA1:", ""));
|
||||
|
||||
if (sb.Length > 0)
|
||||
Clipboard.SetText(sb.ToString(), TextDataFormat.Text);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue