diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-12-10 19:21:09 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-12-10 19:21:09 +0000 |
commit | 31a6e2c7d4f6503a00d24a75c820123c1cce7562 (patch) | |
tree | bb5d4278ad384542ffdbf1d9e87dac4edc6a6cc1 /Source/SPBundleEditorController.m | |
parent | 9f7545289ce2d8eda170baa14d740540cf25188f (diff) | |
download | sequelpro-31a6e2c7d4f6503a00d24a75c820123c1cce7562.tar.gz sequelpro-31a6e2c7d4f6503a00d24a75c820123c1cce7562.tar.bz2 sequelpro-31a6e2c7d4f6503a00d24a75c820123c1cce7562.zip |
• Bundle command support
- fix issue for shortcut recorder for Asian language input
- finished JavaScript support inside the HTML output window to run BASH system commands via "var returnValue = window.system.run(cmd)" whereby cmd is either a normal string or an array of the dimension of 2 (command, processID)
Diffstat (limited to 'Source/SPBundleEditorController.m')
-rw-r--r-- | Source/SPBundleEditorController.m | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/SPBundleEditorController.m b/Source/SPBundleEditorController.m index 99da4bc4..272221d4 100644 --- a/Source/SPBundleEditorController.m +++ b/Source/SPBundleEditorController.m @@ -1086,7 +1086,8 @@ } if(newKeyCombo.flags & NSCommandKeyMask) [keyEq appendString:@"@"]; - [keyEq appendString:theChar]; + if(theChar) + [keyEq appendString:theChar]; } [[self _currentSelectedObject] setObject:keyEq forKey:SPBundleFileKeyEquivalentKey]; |