Skip to content

Commit 62c290f

Browse files
authored
Fix LT-22149: Exported Interlinear text is duplicated (#374)
1 parent 343c561 commit 62c290f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Src/LexText/Interlinear/FilterAllTextsDialog.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ protected override void OnHandleCreated(EventArgs e)
139139
/// </summary>
140140
public IStText[] GetListOfIncludedTexts()
141141
{
142-
return m_treeTexts.GetCheckedTagData().OfType<IStText>().ToArray();
142+
return m_treeTexts.GetCheckedTagData().OfType<IStText>().Distinct().ToArray();
143143
}
144144

145145
#region Windows Form Designer generated code

0 commit comments

Comments
 (0)