Skip to content

Commit

Permalink
Fix Edit Summary Sort
Browse files Browse the repository at this point in the history
  • Loading branch information
reedy committed May 17, 2015
1 parent e0563fb commit 3f2a807
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AWB/SummaryEditor.cs
Expand Up @@ -32,7 +32,7 @@ public SummaryEditor()
private void btnSort_Click(object sender, EventArgs e)
{
List<string> list =
new List<string>(Summaries.Text.Split(new[] {"\r\n"}, StringSplitOptions.RemoveEmptyEntries));
new List<string>(Summaries.Text.Split(new[] {"\r\n", "\n"}, StringSplitOptions.RemoveEmptyEntries));
list.Sort();

Summaries.Clear();
Expand Down

0 comments on commit 3f2a807

Please sign in to comment.