changeset 33:c3e5b6b3bb4b default tip

Change default quasimode key to ctrl instead of option.
author Atul Varma <avarma@mozilla.com>
date Sat, 09 Oct 2010 03:00:09 -0700
parents 9490bb2373db
children
files Quasimode.m TestQuasimodalEventTap.m
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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];
--- 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];