# HG changeset patch # User Atul Varma # Date 1286618409 25200 # Node ID c3e5b6b3bb4bc7bfc00ad04744ea1965e6e720cb # Parent 9490bb2373db0a374fdc9ba8187e76bda6b771fc Change default quasimode key to ctrl instead of option. diff -r 9490bb2373db -r c3e5b6b3bb4b Quasimode.m --- a/Quasimode.m Mon Apr 12 19:56:24 2010 -0700 +++ b/Quasimode.m Sat Oct 09 03:00:09 2010 -0700 @@ -135,7 +135,7 @@ } int retval = 0; - CGEventFlags quasimodeKey = kCGEventFlagMaskAlternate; + CGEventFlags quasimodeKey = kCGEventFlagMaskControl; NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; [NSApplication sharedApplication]; diff -r 9490bb2373db -r c3e5b6b3bb4b TestQuasimodalEventTap.m --- a/TestQuasimodalEventTap.m Mon Apr 12 19:56:24 2010 -0700 +++ b/TestQuasimodalEventTap.m Sat Oct 09 03:00:09 2010 -0700 @@ -22,7 +22,7 @@ QuasimodalEventTap *eventTap = [[QuasimodalEventTap alloc] initWithName: @"test" - quasimodeKey: kCGEventFlagMaskAlternate]; + quasimodeKey: kCGEventFlagMaskControl]; TestObserver *observer = [[TestObserver alloc] init];