diff options
author | Kevin Walzer <kw@codebykevin.com> | 2015-02-11 01:56:56 (GMT) |
---|---|---|
committer | Kevin Walzer <kw@codebykevin.com> | 2015-02-11 01:56:56 (GMT) |
commit | 61ec8df7283ae0dd02dcf86b8b6d3b20e2a79fb8 (patch) | |
tree | 76df6511878a65a6ba06b8791980b7fba1f4ad7d /macosx | |
parent | 5fb0e4f1ac206e6981eafc494432196cd34e138f (diff) | |
download | tk-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')
-rw-r--r-- | macosx/tkMacOSXButton.c | 2 |
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; |