From: Richard Heck Date: Fri, 9 Dec 2011 15:36:53 +0000 (+0000) Subject: Fix bug #7256. Reduce space around inset buttons by a pixel on each side. X-Git-Tag: 2.1.0beta1~2224 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=2d8d85f47ee748f6cc11523973cabcb25c4498ec;p=lyx.git Fix bug #7256. Reduce space around inset buttons by a pixel on each side. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@40454 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/insets/RenderButton.cpp b/src/insets/RenderButton.cpp index 9d080b8df7..06fc653da7 100644 --- a/src/insets/RenderButton.cpp +++ b/src/insets/RenderButton.cpp @@ -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); } }