From 4c34726901731c06b805d6a40cb94af9456c6d37 Mon Sep 17 00:00:00 2001 From: Georg Baum Date: Wed, 1 Nov 2006 09:38:54 +0000 Subject: [PATCH] Fix generation of invalid LyX files * src/lyxfont.C (LyXFont::lyxWriteChanges): Don't change color "inherit" to "default", since that cannot be read in. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15654 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/lyxfont.C | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/lyxfont.C b/src/lyxfont.C index 16d1558b73..af6cc0bf7a 100644 --- a/src/lyxfont.C +++ b/src/lyxfont.C @@ -724,14 +724,8 @@ void LyXFont::lyxWriteChanges(LyXFont const & orgfont, if (orgfont.noun() != noun()) { os << "\\noun " << LyXMiscNames[noun()] << "\n"; } - if (orgfont.color() != color()) { - // To make us file compatible with older - // lyx versions we emit "default" instead - // of "inherit" - string col_str(lcolor.getLyXName(color())); - if (col_str == "inherit") col_str = "default"; - os << "\\color " << col_str << "\n"; - } + if (orgfont.color() != color()) + os << "\\color " << lcolor.getLyXName(color()) << '\n'; if (orgfont.language() != language() && language() != latex_language) { if (language()) -- 2.39.2