summaryrefslogtreecommitdiffstats
path: root/macosx
diff options
context:
space:
mode:
authorKevin Walzer <kw@codebykevin.com>2015-02-11 01:56:44 (GMT)
committerKevin Walzer <kw@codebykevin.com>2015-02-11 01:56:44 (GMT)
commite19a3e04b51173ac68c850ac313350d691b8805a (patch)
tree40d33cc4daffa912d7773b5b8f45ab23c10820d3 /macosx
parent02970d1e62e833f2dee31210ea29875ce176f3f4 (diff)
downloadtk-e19a3e04b51173ac68c850ac313350d691b8805a.zip
tk-e19a3e04b51173ac68c850ac313350d691b8805a.tar.gz
tk-e19a3e04b51173ac68c850ac313350d691b8805a.tar.bz2
Adjust metrics in buttons to remove extraneous padding in Cocoa checkbuttons with images
Diffstat (limited to 'macosx')
-rw-r--r--macosx/tkMacOSXButton.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/tkMacOSXButton.c b/macosx/tkMacOSXButton.c
index fbad20d..40780a6 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;