diff options
author | Kevin Walzer <kw@codebykevin.com> | 2014-12-24 04:43:40 (GMT) |
---|---|---|
committer | Kevin Walzer <kw@codebykevin.com> | 2014-12-24 04:43:40 (GMT) |
commit | 6137cff44fac896616e033bcba2aa90cd3d4adf5 (patch) | |
tree | a2529d63c5b9744d594aeae79995ce53a48e0d29 /macosx/tkMacOSXButton.c | |
parent | c72a9f168448e8f6b17aa805d5308b4934cfa4d1 (diff) | |
download | tk-6137cff44fac896616e033bcba2aa90cd3d4adf5.zip tk-6137cff44fac896616e033bcba2aa90cd3d4adf5.tar.gz tk-6137cff44fac896616e033bcba2aa90cd3d4adf5.tar.bz2 |
All on Tk/Cocoa: Improve view performance during resizing; implement custom drawing of scroller to remove flickering and ghosted appearance during window operations; reduce flickering of menubutton during resizing, but do not completely eliminate ghosted rendering when widget is unmapped
Diffstat (limited to 'macosx/tkMacOSXButton.c')
-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 720e40d..627565a 100644 --- a/macosx/tkMacOSXButton.c +++ b/macosx/tkMacOSXButton.c @@ -38,7 +38,7 @@ static NSRect TkMacOSXGetButtonFrame(TkButton *butPtr); */ @interface TkNSButton: NSButton - +- (void)drawRect:(NSRect)dirtyRect; @end @implementation TkNSButton |