Use a plain font in macro edit box

Without this, the font would be mathcal in a mathcal environment.
Additionally, set the font size to tiny when computing metrics too.
This commit is contained in:
Jean-Marc Lasgouttes 2017-02-21 11:47:05 +01:00
parent cdc9176949
commit 1c1b3519f9

View File

@ -585,8 +585,8 @@ void MathMacro::metrics(MetricsInfo & mi, Dimension & dim) const
// calculate dimension with label while editing
if (lyxrc.macro_edit_style == LyXRC::MACRO_EDIT_INLINE_BOX
&& d->editing_[mi.base.bv]) {
FontInfo font = mi.base.font;
augmentFont(font, "lyxtex");
FontInfo font;
font.setSize(FONT_SIZE_TINY);
Dimension namedim;
mathed_string_dim(font, name(), namedim);
#if 0
@ -776,8 +776,7 @@ void MathMacro::draw(PainterInfo & pi, int x, int y) const
if (drawBox) {
// draw header and rectangle around
FontInfo font = pi.base.font;
augmentFont(font, "lyxtex");
FontInfo font;
font.setSize(FONT_SIZE_TINY);
font.setColor(Color_mathmacrolabel);
Dimension namedim;