summaryrefslogtreecommitdiffstats
path: root/macosx/tkMacOSXButton.c
diff options
context:
space:
mode:
authorKevin Walzer <kw@codebykevin.com>2015-02-11 01:56:56 (GMT)
committerKevin Walzer <kw@codebykevin.com>2015-02-11 01:56:56 (GMT)
commit61ec8df7283ae0dd02dcf86b8b6d3b20e2a79fb8 (patch)
tree76df6511878a65a6ba06b8791980b7fba1f4ad7d /macosx/tkMacOSXButton.c
parent5fb0e4f1ac206e6981eafc494432196cd34e138f (diff)
downloadtk-61ec8df7283ae0dd02dcf86b8b6d3b20e2a79fb8.zip
tk-61ec8df7283ae0dd02dcf86b8b6d3b20e2a79fb8.tar.gz
tk-61ec8df7283ae0dd02dcf86b8b6d3b20e2a79fb8.tar.bz2
Adjust metrics in buttons to remove extraneous padding in Cocoa checkbuttons with images
Diffstat (limited to 'macosx/tkMacOSXButton.c')
-rw-r--r--macosx/tkMacOSXButton.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/tkMacOSXButton.c b/macosx/tkMacOSXButton.c
index a88cad0..adefd4a 100644
--- a/macosx/tkMacOSXButton.c
+++ b/macosx/tkMacOSXButton.c
@@ -305,7 +305,7 @@ TkpComputeButtonGeometry(
break;
case TYPE_CHECK_BUTTON:
width = butPtr->width;
- width += 50;
+ width += 0;
break;
case TYPE_BUTTON:
width = butPtr->width;