Fixes for "Forced" flag commit

This commit is contained in:
niksedk 2014-10-19 00:36:57 +02:00
parent 3434fc41a2
commit f2f89bcb90
2 changed files with 3 additions and 2 deletions

View File

@ -416,6 +416,7 @@ Email: mailto:nikse.dk@gmail.com</AboutText1>
<LineHeight>Line height</LineHeight>
<BoxSingleLine>Box - single line</BoxSingleLine>
<BoxMultiLine>Box - multi line</BoxMultiLine>
<Forced>Forced</Forced>
</ExportPngXml>
<ExportText>
<Title>Export text</Title>

View File

@ -17,8 +17,8 @@ namespace Test.Logic.VobSub
{
var p1 = new Paragraph("Line1", 0, 1000);
var p2 = new Paragraph("Line2", 2000, 3000);
writer.WriteParagraph(p1, new Bitmap(200, 20), ContentAlignment.BottomCenter);
writer.WriteParagraph(p2, new Bitmap(200, 20), ContentAlignment.BottomCenter);
writer.WriteParagraph(p1, new Bitmap(200, 20), ContentAlignment.BottomCenter, false);
writer.WriteParagraph(p2, new Bitmap(200, 20), ContentAlignment.BottomCenter, false);
}
var reader = new VobSubParser(true);