diff options
author | Kevin Walzer <kw@codebykevin.com> | 2015-02-12 01:38:03 (GMT) |
---|---|---|
committer | Kevin Walzer <kw@codebykevin.com> | 2015-02-12 01:38:03 (GMT) |
commit | c488ffdd003a1a7a79a57622fb19e992b0350e6c (patch) | |
tree | b8d7b113c2189197ce6e2d87fa8dc2a12957d70f | |
parent | 7f41da748fce16f6accf68d1beed3e4a7e78ed71 (diff) | |
download | tk-c488ffdd003a1a7a79a57622fb19e992b0350e6c.zip tk-c488ffdd003a1a7a79a57622fb19e992b0350e6c.tar.gz tk-c488ffdd003a1a7a79a57622fb19e992b0350e6c.tar.bz2 |
Further refinement of checkbutton metrics in Cocoa
-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 40780a6..5cdfb3c 100644 --- a/macosx/tkMacOSXButton.c +++ b/macosx/tkMacOSXButton.c @@ -305,7 +305,7 @@ TkpComputeButtonGeometry( break; case TYPE_CHECK_BUTTON: width = butPtr->width; - width +=0; + width +=50; break; case TYPE_BUTTON: width = butPtr->width; |