From: André Pönitz Date: Thu, 12 Aug 2004 22:23:10 +0000 (+0000) Subject: disable the parboxinset (bug #1327) X-Git-Tag: 1.6.10~15105 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=e8d6bdcc7be7e58c3666a84850cefa21abbe96f9;p=features.git disable the parboxinset (bug #1327) git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8891 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/mathed/math_factory.C b/src/mathed/math_factory.C index 3da237bd52..1b54db1285 100644 --- a/src/mathed/math_factory.C +++ b/src/mathed/math_factory.C @@ -255,8 +255,8 @@ MathAtom createMathInset(string const & s) return MathAtom(new MathDotsInset(l)); if (inset == "mbox") return MathAtom(new MathBoxInset(l->name)); - if (inset == "parbox") - return MathAtom(new MathParboxInset); + // if (inset == "parbox") + // return MathAtom(new MathParboxInset); if (inset == "fbox") return MathAtom(new MathFboxInset(l)); if (inset == "style")