From: André Pönitz Date: Fri, 15 Feb 2002 15:01:01 +0000 (+0000) Subject: some support for \xleftarrow X-Git-Tag: 1.6.10~19848 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=57eee4cdd6ea91aebf1896b26edf716270f8a1ec;p=features.git some support for \xleftarrow git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3547 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/mathed/math_factory.C b/src/mathed/math_factory.C index 11d931a713..3200046176 100644 --- a/src/mathed/math_factory.C +++ b/src/mathed/math_factory.C @@ -101,7 +101,7 @@ MathAtom createMathInset(string const & s) if (s == "xymatrix") return MathAtom(new MathXYMatrixInset); - if (s == "xrightarrow") + if (s == "xrightarrow" || s == "xleftarrow") return MathAtom(new MathXArrowInset(s)); if (s == "split" || s == "gathered" || s == "aligned")