aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillermo Ignacio Enriquez Gutierrez <ignacio@jp.ibm.com>2015-08-25 07:34:19 +0900
committerGuillermo Ignacio Enriquez Gutierrez <ignacio@jp.ibm.com>2015-08-25 07:34:48 +0900
commitf4189a6cfc9af1d109f6467c24ec4839c20f64d3 (patch)
tree51d83722284b75e8e54fb7a163bf6a192264b5b0
parentdddc2ceed9c9e87e8b61e99b2de5c212ddf15bb2 (diff)
downloadsequelpro-f4189a6cfc9af1d109f6467c24ec4839c20f64d3.tar.gz
sequelpro-f4189a6cfc9af1d109f6467c24ec4839c20f64d3.tar.bz2
sequelpro-f4189a6cfc9af1d109f6467c24ec4839c20f64d3.zip
Call [super validateMenuItem:] on SPTextView to update osx build in menu
items (issue #2156)
-rw-r--r--Source/SPTextView.m16
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];
}
/**