diff options
author | Kevin Walzer <kw@codebykevin.com> | 2012-01-29 16:36:28 (GMT) |
---|---|---|
committer | Kevin Walzer <kw@codebykevin.com> | 2012-01-29 16:36:28 (GMT) |
commit | 083df11eea2599a5abdb6a213faa2991a5e6ada1 (patch) | |
tree | 0928dd1c5453cdab0439e19104a4b93f54e59d57 /macosx/tkMacOSXButton.c | |
parent | ee98c5f67ad4c1b52997428b3af01c4282cd9bfa (diff) | |
download | tk-083df11eea2599a5abdb6a213faa2991a5e6ada1.zip tk-083df11eea2599a5abdb6a213faa2991a5e6ada1.tar.gz tk-083df11eea2599a5abdb6a213faa2991a5e6ada1.tar.bz2 |
Fix for serious bugs with input methods, and for display of certain fonts in buttons; thanks to Adrian Robert for extensive patches
Diffstat (limited to 'macosx/tkMacOSXButton.c')
-rw-r--r-- | macosx/tkMacOSXButton.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/macosx/tkMacOSXButton.c b/macosx/tkMacOSXButton.c index 8eb3a1f..036624d 100644 --- a/macosx/tkMacOSXButton.c +++ b/macosx/tkMacOSXButton.c @@ -576,6 +576,15 @@ ComputeNativeButtonGeometry( [button setImagePosition:pos]; } + // if font is too tall, we can't use the fixed-height rounded bezel + if (!haveImage && haveText && style == NSRoundedBezelStyle) { + Tk_FontMetrics fm; + Tk_GetFontMetrics(butPtr->tkfont, &fm); + if (fm.linespace > 18) { + [button setBezelStyle:(style = NSShadowlessSquareBezelStyle)]; + } + } + bounds.size = [cell cellSize]; if (haveText) { titleRect = [cell titleRectForBounds:bounds]; |