mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
* half of the fix for http://bugzilla.lyx.org/show_bug.cgi?id=4091
"Applying Text-style to math generates \color{ignore}" Which kind of font changes do we want to support here? After all the text style dialog is meant for text. So it only really make sense for \mbox'es. But there we probably cannot store every font change because it still math up to now. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23681 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
72ca0c5b7b
commit
5e2aeffc43
@ -486,10 +486,12 @@ void InsetMathNest::handleFont2(Cursor & cur, docstring const & arg)
|
||||
Font font;
|
||||
bool b;
|
||||
font.fromString(to_utf8(arg), b);
|
||||
if (font.fontInfo().color() != Color_inherit) {
|
||||
if (font.fontInfo().color() != Color_ignore) {
|
||||
MathAtom at = MathAtom(new InsetMathColor(true, font.fontInfo().color()));
|
||||
cur.handleNest(at, 0);
|
||||
}
|
||||
|
||||
// FIXME: support other font changes here as well?
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user