Fix bug #7256. Reduce space around inset buttons by a pixel on each side.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_2_0_X@40455 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2011-12-09 15:52:18 +00:00
parent c8c99eebfc
commit 911606be66
2 changed files with 6 additions and 3 deletions

View File

@ -51,7 +51,7 @@ void RenderButton::metrics(MetricsInfo &, Dimension & dim) const
else
fm.rectText(text_, dim.wid, dim.asc, dim.des);
dim.wid += 4;
dim.wid += 2;
dim_ = dim;
}
@ -64,9 +64,9 @@ void RenderButton::draw(PainterInfo & pi, int x, int y) const
font.decSize();
if (editable_) {
pi.pain.buttonText(x + 2, y, text_, font, renderState());
pi.pain.buttonText(x + 1, y, text_, font, renderState());
} else {
pi.pain.rectText(x + 2, y, text_, font,
pi.pain.rectText(x + 1, y, text_, font,
Color_commandbg, Color_commandframe);
}
}

View File

@ -44,6 +44,9 @@ What's new
- Clarify what the user can do when hyperref is provided by the document
class (bug 6293).
- Slightly reduced space around inset buttons, to make it clearer when
there is a real space there (bug 7256).
* DOCUMENTATION AND LOCALIZATION