mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 10:58:52 +00:00
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
This commit is contained in:
parent
551fe79880
commit
4c34726901
@ -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())
|
||||
|
Loading…
Reference in New Issue
Block a user