Skip to content

Commit

Permalink
Use --- to separate context lines
Browse files Browse the repository at this point in the history
  • Loading branch information
ChangSpivey committed Oct 6, 2016
1 parent 96fec41 commit ecb4edd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/UtilsSubtitle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ public static String CardListToMultilineString(List<CardInfo> cards, UtilsCommon
str.Append(cards[0].ToSingleLine(languageType));
}
foreach(var card in cards.Skip(1)) {
str.Append("\n");
str.Append(" --- ");
str.Append(card.ToSingleLine(languageType));
}
return str.ToString();
Expand Down

0 comments on commit ecb4edd

Please sign in to comment.