mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 02:28:35 +00:00
Make sure to call the parent's validate method.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33992 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
6a702a2f99
commit
c7cfcf9e2f
@ -137,6 +137,7 @@ void InsetMathRoot::validate(LaTeXFeatures & features) const
|
||||
"span.rootof{border-top: thin solid black;}\n"
|
||||
"span.root sup{font-size: 75%;}\n"
|
||||
"</style>");
|
||||
InsetMathNest::validate(features);
|
||||
}
|
||||
|
||||
} // namespace lyx
|
||||
|
@ -782,6 +782,7 @@ void InsetMathScript::validate(LaTeXFeatures & features) const
|
||||
"sub.math{font-size: 75%;}\n"
|
||||
"sup.math{font-size: 75%;}\n"
|
||||
"</style>");
|
||||
InsetMathNest::validate(features);
|
||||
}
|
||||
|
||||
} // namespace lyx
|
||||
|
@ -113,6 +113,7 @@ void InsetMathSize::validate(LaTeXFeatures & features) const
|
||||
"span.scriptstyle {font-size: small;}\n"
|
||||
"span.scriptscriptstyle {font-size: x-small;}\n"
|
||||
"</style>");
|
||||
InsetMathNest::validate(features);
|
||||
}
|
||||
|
||||
} // namespace lyx
|
||||
|
@ -130,6 +130,7 @@ void InsetMathSqrt::validate(LaTeXFeatures & features) const
|
||||
features.addPreambleSnippet("<style type=\"text/css\">\n"
|
||||
"span.sqrtof{border-top: thin solid black;}\n"
|
||||
"</style>");
|
||||
InsetMathNest::validate(features);
|
||||
}
|
||||
|
||||
} // namespace lyx
|
||||
|
Loading…
Reference in New Issue
Block a user