summaryrefslogtreecommitdiff
path: root/plugingui/tabbutton.cc
diff options
context:
space:
mode:
Diffstat (limited to 'plugingui/tabbutton.cc')
-rw-r--r--plugingui/tabbutton.cc9
1 files changed, 4 insertions, 5 deletions
diff --git a/plugingui/tabbutton.cc b/plugingui/tabbutton.cc
index 27588da..56552c0 100644
--- a/plugingui/tabbutton.cc
+++ b/plugingui/tabbutton.cc
@@ -85,6 +85,7 @@ void TabButton::repaintEvent(RepaintEvent* e)
int padTop = 3;
int padLeft = 0;
+ int padTextTop = 3;
int w = width();
int h = height();
@@ -102,11 +103,9 @@ void TabButton::repaintEvent(RepaintEvent* e)
p.drawImage(padLeft, padTop, tab_active);
}
- p.setColour(Colour(0.1));
- // FIXME: fix all the magic values here
- auto x = (width() / 2) - (3 * text.length()) + (padLeft / 2);
- auto y = (height() / 2) + 5 + 1 + (padTop / 2);
- p.drawText(x, y + 4, font, text, true);
+ auto x = padLeft + (width() - font.textWidth(text)) / 2;
+ auto y = padTop + padTextTop + font.textHeight(text);
+ p.drawText(x, y, font, text, true);
}
void TabButton::clickHandler()