Skip to content

Commit a2bbe92

Browse files
authored
LT-19598 Grammar sketch shows wrong order of slots in affix template (#490)
1 parent 8bb6506 commit a2bbe92

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Src/Transforms/Application/FxtM3MorphologySketch.xsl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6917,13 +6917,15 @@ ProcessSlotNames
69176917
<xsl:choose>
69186918
<xsl:when test="$bVernRightToLeft='1'">
69196919
<xsl:for-each select="$Slots">
6920-
<xsl:sort select="@ord" order="descending"/>
6920+
<!-- no need to sort; the input to this transform has them in order
6921+
<xsl:sort select="@ord" order="descending"/>-->
69216922
<xsl:call-template name="ProcessSlotName"/>
69226923
</xsl:for-each>
69236924
</xsl:when>
69246925
<xsl:otherwise>
69256926
<xsl:for-each select="$Slots">
6926-
<xsl:sort select="@ord"/>
6927+
<!-- no need to sort; the input to this transform has them in order
6928+
<xsl:sort select="@ord" order="descending"/>-->
69276929
<xsl:call-template name="ProcessSlotName"/>
69286930
</xsl:for-each>
69296931
</xsl:otherwise>

0 commit comments

Comments
 (0)