Skip to content

Commit

Permalink
Merge branch 'release/9.1' into LT-21911
Browse files Browse the repository at this point in the history
  • Loading branch information
jtmaxwell3 authored Oct 9, 2024
2 parents 2215e30 + 5695b12 commit ffb5838
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Src/xWorks/LcmWordGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1348,9 +1348,9 @@ public void StartEntry(IFragmentWriter writer, ConfigurableDictionaryNode node,
entryPar.Append(paragraphProps);

// Create the 'continuation' style for the entry. This style will be the same as the style for the entry with the only
// difference being that it does not contain the first line indenting (since it is a continuation of the same entry).
// differences being that it does not contain the first line indenting or bullet info (since it is a continuation of the same entry).
var contStyle = WordStylesGenerator.GenerateContinuationStyle(style);
s_styleCollection.AddStyle(contStyle, node.Style, contStyle.StyleId, bulletInfo);
s_styleCollection.AddStyle(contStyle, node.Style, contStyle.StyleId);
}

public void AddEntryData(IFragmentWriter writer, List<ConfiguredLcmGenerator.ConfigFragment> pieces)
Expand Down Expand Up @@ -2353,7 +2353,7 @@ private bool EndParagraph(WP.Paragraph paragraph, ConfigurableDictionaryNode nod
if (continuationParagraph)
{
var contStyle = WordStylesGenerator.GenerateContinuationStyle(style);
uniqueDisplayName = s_styleCollection.AddStyle(contStyle, node.Style, contStyle.StyleId, bulletInfo);
uniqueDisplayName = s_styleCollection.AddStyle(contStyle, node.Style, contStyle.StyleId);
}
}
WP.ParagraphProperties paragraphProps =
Expand Down

0 comments on commit ffb5838

Please sign in to comment.