mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
Hopefully fix monolithic build.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23380 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
6bf2052227
commit
bced544674
@ -177,11 +177,11 @@ int GuiFontMetrics::signedWidth(docstring const & s) const
|
||||
}
|
||||
|
||||
|
||||
static int const d = Inset::TEXT_TO_INSET_OFFSET / 2;
|
||||
|
||||
void GuiFontMetrics::rectText(docstring const & str,
|
||||
int & w, int & ascent, int & descent) const
|
||||
{
|
||||
static int const d = Inset::TEXT_TO_INSET_OFFSET / 2;
|
||||
|
||||
w = width(str) + Inset::TEXT_TO_INSET_OFFSET;
|
||||
ascent = metrics_.ascent() + d;
|
||||
descent = metrics_.descent() + d;
|
||||
|
@ -430,7 +430,6 @@ void GuiPainter::buttonFrame(int x, int y, int w, int h)
|
||||
line(x, y + h - 1, x - 1 + w, y + h - 1, Color_buttonframe);
|
||||
}
|
||||
|
||||
static int const d = Inset::TEXT_TO_INSET_OFFSET / 2;
|
||||
|
||||
void GuiPainter::rectText(int x, int y, docstring const & str,
|
||||
FontInfo const & font, ColorCode back, ColorCode frame)
|
||||
@ -463,6 +462,8 @@ void GuiPainter::buttonText(int x, int y, docstring const & str,
|
||||
FontMetrics const & fm = theFontMetrics(font);
|
||||
fm.buttonText(str, width, ascent, descent);
|
||||
|
||||
static int const d = Inset::TEXT_TO_INSET_OFFSET / 2;
|
||||
|
||||
button(x + d, y - ascent, width - d, descent + ascent, mouseHover);
|
||||
text(x + Inset::TEXT_TO_INSET_OFFSET, y, str, font);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user