diff options
author | Kevin Walzer <kw@codebykevin.com> | 2015-01-12 03:18:08 (GMT) |
---|---|---|
committer | Kevin Walzer <kw@codebykevin.com> | 2015-01-12 03:18:08 (GMT) |
commit | 13a883e4c3662265de27a4013622d4ccb6512e7a (patch) | |
tree | 8838c100492cdf498d84ad2eb187982e8fb6f0fd /macosx/tkMacOSXInit.c | |
parent | 8e30b0036fc3c6f090e11f2810f10a5d7c4a6602 (diff) | |
download | tk-13a883e4c3662265de27a4013622d4ccb6512e7a.zip tk-13a883e4c3662265de27a4013622d4ccb6512e7a.tar.gz tk-13a883e4c3662265de27a4013622d4ccb6512e7a.tar.bz2 |
Revert changes to Mac scrollbar; native implementation is best that can be done, custom drawing in scrollbar is worse from UI standpoint.
Diffstat (limited to 'macosx/tkMacOSXInit.c')
-rw-r--r-- | macosx/tkMacOSXInit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/tkMacOSXInit.c b/macosx/tkMacOSXInit.c index a807dfa..79ce70a 100644 --- a/macosx/tkMacOSXInit.c +++ b/macosx/tkMacOSXInit.c @@ -54,7 +54,7 @@ static void keyboardChanged(CFNotificationCenterRef center, void *observer, CFSt @end @interface TKApplication(TKScrlbr) -- (void) _setupScrollBarNotifications; +//- (void) _setupScrollBarNotifications; @end @interface TKApplication(TKMenus) @@ -108,7 +108,7 @@ static void keyboardChanged(CFNotificationCenterRef center, void *observer, CFSt selector:@selector(_postedNotification:) name:nil object:nil]; #endif [self _setupWindowNotifications]; - [self _setupScrollBarNotifications]; + // [self _setupScrollBarNotifications]; [self _setupApplicationNotifications]; } |