aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ButtonTool.cc9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/ButtonTool.cc b/src/ButtonTool.cc
index ad54534..746549f 100644
--- a/src/ButtonTool.cc
+++ b/src/ButtonTool.cc
@@ -23,6 +23,7 @@
23#include "ButtonTheme.hh" 23#include "ButtonTheme.hh"
24#include "FbTk/Button.hh" 24#include "FbTk/Button.hh"
25#include "FbTk/ImageControl.hh" 25#include "FbTk/ImageControl.hh"
26#include "FbTk/TextButton.hh"
26 27
27ButtonTool::ButtonTool(FbTk::Button *button, 28ButtonTool::ButtonTool(FbTk::Button *button,
28 ToolbarItem::Type type, 29 ToolbarItem::Type type,
@@ -46,7 +47,13 @@ ButtonTool::~ButtonTool() {
46 47
47void ButtonTool::updateSizing() { 48void ButtonTool::updateSizing() {
48 FbTk::Button &btn = static_cast<FbTk::Button &>(window()); 49 FbTk::Button &btn = static_cast<FbTk::Button &>(window());
49 btn.setBorderWidth(theme()->border().width()); 50 int bw = theme()->border().width();
51 btn.setBorderWidth(bw);
52 if (FbTk::TextButton *txtBtn = dynamic_cast<FbTk::TextButton*>(&btn)) {
53 bw += 2; // extra padding, seems somehow required...
54 resize(theme()->font().textWidth(txtBtn->text()) + 2*bw,
55 theme()->font().height() + 2*bw);
56 }
50} 57}
51 58
52void ButtonTool::renderTheme(int alpha) { 59void ButtonTool::renderTheme(int alpha) {