Keep spacing of math intact.

(cherry picked from commit b521d36bfb)
This commit is contained in:
Daniel Ramoeller 2020-07-30 13:14:51 +02:00 committed by Juergen Spitzmueller
parent 79998fdc62
commit 3a544072a5
2 changed files with 3 additions and 1 deletions

View File

@ -100,7 +100,7 @@ void InsetMathColor::write(WriteStream & os) const
// reset to default color inside another color inset
os << "{\\normalcolor " << cell(0) << '}';
else if (oldstyle_)
os << "{\\color{" << color_ << '}' << cell(0) << '}';
os << "\\begingroup\\color{" << color_ << '}' << cell(0) << "\\endgroup ";
else
os << "\\textcolor{" << color_ << "}{" << cell(0) << '}';
}

View File

@ -51,6 +51,8 @@ What's new
- Fix output of titles in branches and other insets (follow-up to bug 11787).
- Fix spacing in math when using color (bug 11827).
* USER INTERFACE