diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-08-10 18:37:40 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-08-10 18:37:40 +0000 |
commit | 54283b7e7aa702e9334cf886344d309e5d9f9871 (patch) | |
tree | f6a3d750295b4875ab66909132c521227839431d | |
parent | 19f094a0ba8a3bb74022f019eef62b1f8f59ef7f (diff) | |
download | sequelpro-54283b7e7aa702e9334cf886344d309e5d9f9871.tar.gz sequelpro-54283b7e7aa702e9334cf886344d309e5d9f9871.tar.bz2 sequelpro-54283b7e7aa702e9334cf886344d309e5d9f9871.zip |
• added key stroke CTRL+= to increasing the font size to be consistent with the Mac standard
-rw-r--r-- | Source/SPEditSheetTextView.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPEditSheetTextView.m b/Source/SPEditSheetTextView.m index 9e0c597f..97d98e26 100644 --- a/Source/SPEditSheetTextView.m +++ b/Source/SPEditSheetTextView.m @@ -106,7 +106,7 @@ long curFlags = ([theEvent modifierFlags] & allFlags); if(curFlags & NSCommandKeyMask) { - if([charactersIgnMod isEqualToString:@"+"]) // increase text size by 1; ⌘+ and numpad + + if([charactersIgnMod isEqualToString:@"+"] || [charactersIgnMod isEqualToString:@"="]) // increase text size by 1; ⌘+ and numpad + { [self makeTextSizeLarger]; [self saveChangedFontInUserDefaults]; |