aboutsummaryrefslogtreecommitdiff
path: root/AppKit
diff options
context:
space:
mode:
authorGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2009-06-04 21:45:20 +0000
committerGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2009-06-04 21:45:20 +0000
commitf5ae2596f49d9371730825e43f9137282e53b658 (patch)
tree84cfeeafd6221f48362f88282bc482994d03924b /AppKit
parent9920aadccc0c3a8f0c87199eafe942df35477fc1 (diff)
[Author: dmaclach]
Fixes up the preferences dialog to handle both cmd+cmd and another key modifier Fixes up some localization strings DELTA=467 (343 added, 79 deleted, 45 changed) R=hawk
Diffstat (limited to 'AppKit')
-rw-r--r--AppKit/GTMHotKeyTextField.m3
1 files changed, 2 insertions, 1 deletions
diff --git a/AppKit/GTMHotKeyTextField.m b/AppKit/GTMHotKeyTextField.m
index 5a95490..caa8152 100644
--- a/AppKit/GTMHotKeyTextField.m
+++ b/AppKit/GTMHotKeyTextField.m
@@ -494,7 +494,8 @@ static CFStringRef kGTM_TISPropertyUnicodeKeyLayoutData = NULL;
case 36: key = '\r'; localizedKey = @"Return"; break;
case 76: key = 0x3; localizedKey = @"Enter"; break;
case 48: key = 0x9; localizedKey = @"Tab"; break;
- case 49: key = 0xA0; localizedKey = @"Space"; break;
+ // 0x2423 is the Open Box
+ case 49: key = 0x2423; localizedKey = @"Space"; break;
// Control keys
case 51: key = 0x8; localizedKey = @"Delete"; break;
case 71: key = NSClearDisplayFunctionKey; localizedKey = @"Clear"; break;