diff options
author | Guillermo Ignacio Enriquez Gutierrez <ignacio@jp.ibm.com> | 2015-08-25 07:34:19 +0900 |
---|---|---|
committer | Guillermo Ignacio Enriquez Gutierrez <ignacio@jp.ibm.com> | 2015-08-25 07:34:48 +0900 |
commit | f4189a6cfc9af1d109f6467c24ec4839c20f64d3 (patch) | |
tree | 51d83722284b75e8e54fb7a163bf6a192264b5b0 /Source | |
parent | dddc2ceed9c9e87e8b61e99b2de5c212ddf15bb2 (diff) | |
download | sequelpro-f4189a6cfc9af1d109f6467c24ec4839c20f64d3.tar.gz sequelpro-f4189a6cfc9af1d109f6467c24ec4839c20f64d3.tar.bz2 sequelpro-f4189a6cfc9af1d109f6467c24ec4839c20f64d3.zip |
Call [super validateMenuItem:] on SPTextView to update osx build in menu
items (issue #2156)
Diffstat (limited to 'Source')
-rw-r--r-- | Source/SPTextView.m | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/Source/SPTextView.m b/Source/SPTextView.m index 12d6ed13..f9ec441e 100644 --- a/Source/SPTextView.m +++ b/Source/SPTextView.m @@ -3203,16 +3203,14 @@ static inline NSPoint SPPointOnLine(NSPoint a, NSPoint b, CGFloat t) { return NS */ - (BOOL)validateMenuItem:(NSMenuItem *)menuItem { - - // Enable or disable the search in the MySQL help menu item depending on whether there is a + // Enable or disable the search in the MySQL help menu item depending on whether there is a // selection and whether it is a reasonable length. if ([menuItem action] == @selector(showMySQLHelpForCurrentWord:)) { - if ([self selectedRange].length > 0) { - [menuItem setTitle:NSLocalizedString(@"MySQL Help for Selection", @"MySQL Help for Selection")]; - } else { - [menuItem setTitle: NSLocalizedString(@"MySQL Help for Word", @"MySQL Help for Word")]; - } - + if ([self selectedRange].length > 0) { + [menuItem setTitle:NSLocalizedString(@"MySQL Help for Selection", @"MySQL Help for Selection")]; + } else { + [menuItem setTitle: NSLocalizedString(@"MySQL Help for Word", @"MySQL Help for Word")]; + } NSUInteger stringSize = [self getRangeForCurrentWord].length; return (stringSize || stringSize > 64); } @@ -3231,7 +3229,7 @@ static inline NSPoint SPPointOnLine(NSPoint a, NSPoint b, CGFloat t) { return NS return NO; } - return YES; + return [super validateMenuItem:menuItem]; } /** |