From 59cfb29d7194e94b88e22f989c57f64edb5cf9cb Mon Sep 17 00:00:00 2001 From: John Maxwell Date: Mon, 20 Apr 2026 08:12:35 -0700 Subject: [PATCH] Fix LT-22492: Change field name to Use Abbreviation for Value --- .../Configuration/Parts/Morphology.fwlayout | 4 ++-- .../Configuration/Parts/MorphologyParts.xml | 3 +++ Src/FdoUi/FdoUiCore.cs | 5 +++++ 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/DistFiles/Language Explorer/Configuration/Parts/Morphology.fwlayout b/DistFiles/Language Explorer/Configuration/Parts/Morphology.fwlayout index e0cc3c6bc4..8ff98db609 100644 --- a/DistFiles/Language Explorer/Configuration/Parts/Morphology.fwlayout +++ b/DistFiles/Language Explorer/Configuration/Parts/Morphology.fwlayout @@ -285,7 +285,7 @@ - + @@ -311,7 +311,7 @@ - + diff --git a/DistFiles/Language Explorer/Configuration/Parts/MorphologyParts.xml b/DistFiles/Language Explorer/Configuration/Parts/MorphologyParts.xml index a7808eb190..707f35877c 100644 --- a/DistFiles/Language Explorer/Configuration/Parts/MorphologyParts.xml +++ b/DistFiles/Language Explorer/Configuration/Parts/MorphologyParts.xml @@ -1980,6 +1980,9 @@ + + + diff --git a/Src/FdoUi/FdoUiCore.cs b/Src/FdoUi/FdoUiCore.cs index 91c6c18497..44487532a7 100644 --- a/Src/FdoUi/FdoUiCore.cs +++ b/Src/FdoUi/FdoUiCore.cs @@ -431,6 +431,11 @@ internal static CmObjectUi DefaultCreateNewUiObject(Mediator mediator, int class { int newHvo = cache.DomainDataByFlid.MakeNewObject(classId, hvoOwner, flid, insertionPosition); newUiObj = MakeUi(cache, newHvo, classId); + if (newUiObj?.Object is IFsSymFeatVal featVal) + { + // Default to Use Abbreviation for value. + featVal.ShowInGloss = true; + } }); return newUiObj; }