diff options
author | André Nusser <andre.nusser@googlemail.com> | 2017-04-20 22:22:36 +0200 |
---|---|---|
committer | André Nusser <andre.nusser@googlemail.com> | 2017-04-20 22:23:07 +0200 |
commit | 25ac09f7ee1c7c6c9b1360c1d92eb3fb2ee4a3b0 (patch) | |
tree | 5167ba04261ec0f793d38a3c0244d15f2c6e0a43 /plugingui/button.cc | |
parent | 2d430a085e8ac1781638cac4261389947859532b (diff) |
Set text in tabs correctly and fix magic values in button classes.
Diffstat (limited to 'plugingui/button.cc')
-rw-r--r-- | plugingui/button.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugingui/button.cc b/plugingui/button.cc index 8e386c0..907b1a1 100644 --- a/plugingui/button.cc +++ b/plugingui/button.cc @@ -51,6 +51,7 @@ void Button::repaintEvent(RepaintEvent* repaintEvent) int padTop = 3; int padLeft = 0; + int padTextTop = 3; int w = width(); int h = height(); @@ -80,9 +81,8 @@ void Button::repaintEvent(RepaintEvent* repaintEvent) p.setColour(Colour(0.55)); } - auto x = (w / 2) - (3 * text.length()) + (draw_state == State::Up ? 0 : 1) + - (padLeft / 2); - auto y = (h / 2) + 5 + 1 + (draw_state == State::Up ? 0 : 1) + (padTop / 2); + auto x = padLeft + (width() - font.textWidth(text)) / 2; + auto y = padTop + padTextTop + font.textHeight(text); p.drawText(x, y, font, text, enabled); } |