summaryrefslogtreecommitdiff
path: root/src/guichan
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-10-17 18:31:26 +0300
committerAndrei Karas <akaras@inbox.ru>2012-10-17 18:31:26 +0300
commit3ae7d2eff3d20c3042ddac4fd4f205812079b94e (patch)
treef4fb1bc99383c05457e1958e4c825e285f2097ab /src/guichan
parentd0827ddf1686bdb97fab96f9f26dc95388919011 (diff)
downloadmv-3ae7d2eff3d20c3042ddac4fd4f205812079b94e.tar.gz
mv-3ae7d2eff3d20c3042ddac4fd4f205812079b94e.tar.bz2
mv-3ae7d2eff3d20c3042ddac4fd4f205812079b94e.tar.xz
mv-3ae7d2eff3d20c3042ddac4fd4f205812079b94e.zip
Extend checkbox theming.
New options: padding - padding from all sides except left imagePadding - padding from left before image imageSize - image size for computation width spacing - space between image and text width = imagePadding + imageSize + spacing + text width + padding height = padding + text height + padding
Diffstat (limited to 'src/guichan')
-rw-r--r--src/guichan/widgets/checkbox.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/guichan/widgets/checkbox.cpp b/src/guichan/widgets/checkbox.cpp
index 58710409b..dcac59d17 100644
--- a/src/guichan/widgets/checkbox.cpp
+++ b/src/guichan/widgets/checkbox.cpp
@@ -123,10 +123,6 @@ namespace gcn
void CheckBox::adjustSize()
{
- const int height = getFont()->getHeight();
-
- setHeight(height);
- setWidth(getFont()->getWidth(mCaption) + height + height / 2);
}
void CheckBox::toggleSelected()