commit 4d4888aba83a708125bd469513fc303a5cd474cf
Author: Thibaut Cuvelier <tcuvel...@lyx.org>
Date:   Wed Nov 13 20:08:09 2024 +0100

    Added mrow to InsetMathCases::mathmlize
    
    Co-authored-by: Lorenzo Bertini <lorenzobertin...@gmail.com>
---
 src/mathed/InsetMathCases.cpp | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/mathed/InsetMathCases.cpp b/src/mathed/InsetMathCases.cpp
index 5cdb41691f..b97ffd42db 100644
--- a/src/mathed/InsetMathCases.cpp
+++ b/src/mathed/InsetMathCases.cpp
@@ -142,10 +142,12 @@ void InsetMathCases::maple(MapleStream & os) const
 
 void InsetMathCases::mathmlize(MathMLStream & ms) const
 {
-       ms << MTagInline("mo", "form='prefix' fence='true' stretchy='true' 
symmetric='true'")
+       ms << MTag("mrow")
+          << MTagInline("mo", "form='prefix' fence='true' stretchy='true' 
symmetric='true'")
           << "{"
           << ETagInline("mo");
        InsetMathGrid::mathmlize(ms);
+       ms << ETag("mrow");
 }
 
 
-- 
lyx-cvs mailing list
lyx-cvs@lists.lyx.org
https://lists.lyx.org/mailman/listinfo/lyx-cvs

Reply via email to