Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Src/LexText/Interlinear/ConfigureInterlinDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -806,6 +806,7 @@ private void OkButton_Click(object sender, EventArgs e)
}

OrderAllSpecs(m_choices, orderedFlids, newLineSpecsUnordered);
Choices.UpdateLineOptions();
}

internal static void OrderAllSpecs(InterlinLineChoices choices, List<int> orderedFlids, List<InterlinLineSpec> newLineSpecsUnordered)
Expand Down
5 changes: 5 additions & 0 deletions Src/LexText/Interlinear/InterlinLineChoices.cs
Original file line number Diff line number Diff line change
Expand Up @@ -534,6 +534,11 @@ public bool Remove(int flid, int ws)
public const int kflidLitTrans = InterlinVc.ktagSegmentLit;
public const int kflidNote = InterlinVc.ktagSegmentNote;

internal void UpdateLineOptions()
{
UpdateFieldNamesFromLines(Mode);
}

private LineOption[] UpdateFieldNamesFromLines(InterlinMode mode)
{
LineOption[] options = LineOptions(mode);
Expand Down
Loading