]> git.lyx.org Git - lyx.git/blobdiff - src/lyxfont.C
Extend the navigate menu to child docs
[lyx.git] / src / lyxfont.C
index 16d1558b73924aba24b98510ce85be1c6be24e48..af6cc0bf7a056b40f31ab98825c44ddcf3270037 100644 (file)
@@ -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())