Mac: Turn off momentum-based scrolling.

Sam Lantinga 2013-09-13 17:41:17 -07:00
parent 37509cf3e3
commit e231d5b450
1 changed files with 3 additions and 0 deletions

View File

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