diff options
author | Kevin Walzer <kw@codebykevin.com> | 2015-02-12 01:56:47 (GMT) |
---|---|---|
committer | Kevin Walzer <kw@codebykevin.com> | 2015-02-12 01:56:47 (GMT) |
commit | c9b407707ffd86f9d065636e2792bafbc51c0ee7 (patch) | |
tree | c17de008e03412905265281ca05826925b8ce4e2 | |
parent | 74f7599bcee8085dc884a0f25d7c60fe35bee837 (diff) | |
download | tk-c9b407707ffd86f9d065636e2792bafbc51c0ee7.zip tk-c9b407707ffd86f9d065636e2792bafbc51c0ee7.tar.gz tk-c9b407707ffd86f9d065636e2792bafbc51c0ee7.tar.bz2 |
Further refinement of button 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 5cdfb3c..117d77c 100644 --- a/macosx/tkMacOSXButton.c +++ b/macosx/tkMacOSXButton.c @@ -309,7 +309,7 @@ TkpComputeButtonGeometry( break; case TYPE_BUTTON: width = butPtr->width; - width += 0; + width += 30; break; } } |