summaryrefslogtreecommitdiffstats
path: root/macosx/tkMacOSXButton.c
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)
commit19d4dc3e81f2968d4cd11528310144cbf9491670 (patch)
tree6c6c86017deccd99c8ec8d9856b08791f9e4c8f0 /macosx/tkMacOSXButton.c
parent564e8807008dcfafdad66d4a9705d92e3e4a6e01 (diff)
downloadtk-19d4dc3e81f2968d4cd11528310144cbf9491670.zip
tk-19d4dc3e81f2968d4cd11528310144cbf9491670.tar.gz
tk-19d4dc3e81f2968d4cd11528310144cbf9491670.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 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;