浏览代码

Mac: Turn off momentum-based scrolling.

Sam Lantinga 12 年之前
父节点
当前提交
e231d5b450
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      src/video/cocoa/SDL_cocoaevents.m

+ 3 - 0
src/video/cocoa/SDL_cocoaevents.m

@@ -231,6 +231,9 @@ Cocoa_RegisterApp(void)
             CreateApplicationMenus();
             CreateApplicationMenus();
         }
         }
         [NSApp finishLaunching];
         [NSApp finishLaunching];
+        NSDictionary *appDefaults = [NSDictionary dictionaryWithObject:@"NO" forKey:@"AppleMomentumScrollSupported"];
+        [[NSUserDefaults standardUserDefaults] registerDefaults:appDefaults];
+
     }
     }
     if (NSApp && ![NSApp delegate]) {
     if (NSApp && ![NSApp delegate]) {
         [NSApp setDelegate:[[SDLAppDelegate alloc] init]];
         [NSApp setDelegate:[[SDLAppDelegate alloc] init]];