Issue 364 - fix Copy All button line formatting

This commit is contained in:
adelikat 2015-01-11 14:24:30 +00:00
parent 263416a0d0
commit 3b44451754
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ namespace BizHawk.Client.EmuHawk
{
var sb = new StringBuilder();
foreach (var s in Lines)
sb.Append(s);
sb.AppendLine(s);
if (sb.Length > 0)
Clipboard.SetText(sb.ToString(), TextDataFormat.Text);
}