mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 10:58:52 +00:00
Fix cut and paste error in last commit.
Also, we can just realize the font ourselves here.
This commit is contained in:
parent
3203fb1c5f
commit
b0963b1b60
@ -104,13 +104,12 @@ GuiFontInfo & fontinfo(FontInfo const & f)
|
|||||||
// We can reset the font to something sensible in release mode.
|
// We can reset the font to something sensible in release mode.
|
||||||
LATTEST(false);
|
LATTEST(false);
|
||||||
LYXERR0("Unrealized font!");
|
LYXERR0("Unrealized font!");
|
||||||
// We could be fancier here, if we wanted, and just fix things where
|
FontInfo f2 = f;
|
||||||
// there is a problem. But it doesn't seem worth it, since we should
|
f2.realize(sane_font);
|
||||||
// not be here in the first place.
|
|
||||||
GuiFontInfo * & fi =
|
GuiFontInfo * & fi =
|
||||||
fontinfo_[sane_font.family()][sane_font.series()][sane_font.realShape()][sane_font.size()];
|
fontinfo_[f2.family()][f2.series()][f2.realShape()][f2.size()];
|
||||||
if (!fi)
|
if (!fi)
|
||||||
fi = new GuiFontInfo(f);
|
fi = new GuiFontInfo(f2);
|
||||||
return *fi;
|
return *fi;
|
||||||
}
|
}
|
||||||
// fi is a reference to the pointer type (GuiFontInfo *) in the
|
// fi is a reference to the pointer type (GuiFontInfo *) in the
|
||||||
|
Loading…
Reference in New Issue
Block a user