diff options
author | rowanbeentje <rowan@beent.je> | 2011-04-11 00:21:41 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2011-04-11 00:21:41 +0000 |
commit | 2621e79c75a0119a54c669b263caa82183bd19c8 (patch) | |
tree | 40f77701799aa5afb95b427b813050cb2765fc48 /Source/SPBundleCommandTextView.m | |
parent | 6b154a3822f133a6e8cb09c116853bcd728b53cf (diff) | |
download | sequelpro-2621e79c75a0119a54c669b263caa82183bd19c8.tar.gz sequelpro-2621e79c75a0119a54c669b263caa82183bd19c8.tar.bz2 sequelpro-2621e79c75a0119a54c669b263caa82183bd19c8.zip |
- Add Command-0 as the shortcut to restore the default font size in the HTML output window and bundle and field editors, adding commands for the equivalent functionality. This standardises text views with the custom query view and other applications
Diffstat (limited to 'Source/SPBundleCommandTextView.m')
-rw-r--r-- | Source/SPBundleCommandTextView.m | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/Source/SPBundleCommandTextView.m b/Source/SPBundleCommandTextView.m index 59bebadc..6f91676c 100644 --- a/Source/SPBundleCommandTextView.m +++ b/Source/SPBundleCommandTextView.m @@ -488,7 +488,13 @@ [self saveChangedFontInUserDefaults]; return; } - if([charactersIgnMod isEqualToString:@"["]) // decrease text size by 1; ⌘- and numpad - + if([charactersIgnMod isEqualToString:@"0"]) // return text to standard size; ⌘0 + { + [self makeTextStandardSize]; + [self saveChangedFontInUserDefaults]; + return; + } + if([charactersIgnMod isEqualToString:@"["]) // shift left { [self shiftSelectionLeft]; return; @@ -498,7 +504,7 @@ [self shiftSelectionRight]; return; } - if([charactersIgnMod isEqualToString:@"/"]) // shift right + if([charactersIgnMod isEqualToString:@"/"]) // comment out text { [self commentOut]; return; |