]> git.lyx.org Git - features.git/commitdiff
Fix output of subentry with sortkey
authorJuergen Spitzmueller <spitz@lyx.org>
Tue, 1 Nov 2022 10:55:57 +0000 (11:55 +0100)
committerJuergen Spitzmueller <spitz@lyx.org>
Tue, 1 Nov 2022 10:55:57 +0000 (11:55 +0100)
src/insets/InsetIndexMacro.cpp

index e4dc167ca338d536699d76b0558c6a73de740ec9..80ba766b538afdb6438b69521a7b03ffe6973aa4 100644 (file)
@@ -159,6 +159,7 @@ void InsetIndexMacro::getLatex(otexstream & os, OutputParams const & runparams)
                if (hasSortKey()) {
                        getSortkey(os, runparams);
                        os << "@";
+                       InsetText::latex(os, runparams);
                } else {
                        odocstringstream ourlatex;
                        otexstream ots(ourlatex);