Skip to content
Merged
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
6 changes: 5 additions & 1 deletion Src/LexText/Interlinear/SandboxBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1265,6 +1265,7 @@ private bool LoadRealDataIntoSec1(int hvoSbWord, bool fLookForDefaults, bool fAd
}
if (this.ShowMorphBundles)
{
bool hasMf = false;
var bldrError = new StringBuilder();
foreach (var mb in analysis.MorphBundlesOS)
{
Expand Down Expand Up @@ -1424,9 +1425,12 @@ private bool LoadRealDataIntoSec1(int hvoSbWord, bool fLookForDefaults, bool fAd
// improve performance. All the relevant data should already have
// been loaded while creating the main interlinear view.
LoadSecDataForEntry(entryReal, senseReal, hvoSbWord, cda, wsVern, hvoMbSec, fGuessing, sdaMain);
CopyLexEntryInfoToMonomorphemicWordGlossAndPos();
hasMf = true;
}
}
if (hasMf)
// Wait until all of the morphemes have been loaded (cf. LT-22235).
CopyLexEntryInfoToMonomorphemicWordGlossAndPos();
if (bldrError.Length > 0)
{
var msg = bldrError.ToString().Trim();
Expand Down
Loading