From: Jürgen Spitzmüller Date: Wed, 12 Mar 2008 18:50:50 +0000 (+0000) Subject: * src/mathed/InsetMathNest.cpp: X-Git-Tag: 1.6.10~5673 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=ad5ba124befd10ca58c24c0d64eeb956221ab800;p=features.git * src/mathed/InsetMathNest.cpp: - also handle the Color_inherit case. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23688 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/mathed/InsetMathNest.cpp b/src/mathed/InsetMathNest.cpp index 377724444d..d1b8baf9f0 100644 --- a/src/mathed/InsetMathNest.cpp +++ b/src/mathed/InsetMathNest.cpp @@ -491,7 +491,8 @@ void InsetMathNest::handleFont2(Cursor & cur, docstring const & arg) Font font; bool b; font.fromString(to_utf8(arg), b); - if (font.fontInfo().color() != Color_ignore) + if (font.fontInfo().color() != Color_inherit && + font.fontInfo().color() != Color_ignore) handleNest(cur, MathAtom(new InsetMathColor(true, font.fontInfo().color()))); // FIXME: support other font changes here as well?