X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FRenderButton.cpp;h=9d080b8df747280ff186646094bb8afd94768e67;hb=2c357c1d23b7b83839a9beb8225d4f1ae4f793b4;hp=f1ae80043005ca11a6110647fa4bf51169a912a3;hpb=ed858d73e57ce7aa89e38c1bc4d799362edb0227;p=lyx.git diff --git a/src/insets/RenderButton.cpp b/src/insets/RenderButton.cpp index f1ae800430..9d080b8df7 100644 --- a/src/insets/RenderButton.cpp +++ b/src/insets/RenderButton.cpp @@ -12,7 +12,6 @@ #include "RenderButton.h" -#include "Color.h" #include "MetricsInfo.h" #include "frontends/FontMetrics.h" @@ -40,9 +39,9 @@ void RenderButton::update(docstring const & text, bool editable) } -bool RenderButton::metrics(MetricsInfo &, Dimension & dim) const +void RenderButton::metrics(MetricsInfo &, Dimension & dim) const { - Font font(Font::ALL_SANE); + FontInfo font = sane_font; font.decSize(); frontend::FontMetrics const & fm = theFontMetrics(font); @@ -53,25 +52,22 @@ bool RenderButton::metrics(MetricsInfo &, Dimension & dim) const fm.rectText(text_, dim.wid, dim.asc, dim.des); dim.wid += 4; - if (dim_ == dim) - return false; dim_ = dim; - return true; } void RenderButton::draw(PainterInfo & pi, int x, int y) const { // Draw it as a box with the LaTeX text - Font font(Font::ALL_SANE); - font.setColor(Color::command); + FontInfo font = sane_font; + font.setColor(Color_command); font.decSize(); if (editable_) { pi.pain.buttonText(x + 2, y, text_, font, renderState()); } else { pi.pain.rectText(x + 2, y, text_, font, - Color::commandbg, Color::commandframe); + Color_commandbg, Color_commandframe); } }