diff options
author | Kevin Walzer <kw@codebykevin.com> | 2015-02-16 22:06:24 (GMT) |
---|---|---|
committer | Kevin Walzer <kw@codebykevin.com> | 2015-02-16 22:06:24 (GMT) |
commit | 442c33b72b0c586709b2961fbbb27bfcc6ee4406 (patch) | |
tree | c57f94ced36ac8d41cf16a641cc18af05b50fd31 /macosx/tkMacOSXButton.c | |
parent | 302f10c77dbcf9b5c1c54f476f81072f08213e09 (diff) | |
download | tk-442c33b72b0c586709b2961fbbb27bfcc6ee4406.zip tk-442c33b72b0c586709b2961fbbb27bfcc6ee4406.tar.gz tk-442c33b72b0c586709b2961fbbb27bfcc6ee4406.tar.bz2 |
Cleanup of bounds in button code.
Diffstat (limited to 'macosx/tkMacOSXButton.c')
-rw-r--r-- | macosx/tkMacOSXButton.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/macosx/tkMacOSXButton.c b/macosx/tkMacOSXButton.c index cfd338b..1a54514 100644 --- a/macosx/tkMacOSXButton.c +++ b/macosx/tkMacOSXButton.c @@ -410,12 +410,6 @@ TkpComputeButtonGeometry( /* Pad to fill difference between content bounds and button bounds. */ paddingx = contBounds.origin.x; paddingy = contBounds.origin.y; - if (paddingx > 0) { - //width += paddingx; - } - if (paddingy > 0) { - //height += paddingy; - } if (height < paddingx - 4) { /* can't have buttons much shorter than button side diameter. */ |