aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Resources/English.lproj/BundleEditor.stringsbin19640 -> 18378 bytes
-rw-r--r--Resources/English.lproj/MainMenu.stringsbin45312 -> 45642 bytes
-rw-r--r--Source/SPCustomQuery.m8
3 files changed, 6 insertions, 2 deletions
diff --git a/Resources/English.lproj/BundleEditor.strings b/Resources/English.lproj/BundleEditor.strings
index 56496dce..d038f58e 100644
--- a/Resources/English.lproj/BundleEditor.strings
+++ b/Resources/English.lproj/BundleEditor.strings
Binary files differ
diff --git a/Resources/English.lproj/MainMenu.strings b/Resources/English.lproj/MainMenu.strings
index 4c048340..3d149080 100644
--- a/Resources/English.lproj/MainMenu.strings
+++ b/Resources/English.lproj/MainMenu.strings
Binary files differ
diff --git a/Source/SPCustomQuery.m b/Source/SPCustomQuery.m
index e51da22c..eacffe3b 100644
--- a/Source/SPCustomQuery.m
+++ b/Source/SPCustomQuery.m
@@ -3408,7 +3408,9 @@
initWithString:([favorite objectForKey:@"tabtrigger"] && [(NSString*)[favorite objectForKey:@"tabtrigger"] length]) ? [NSString stringWithFormat:@"%@\t%@⇥", [favorite objectForKey:@"name"], [favorite objectForKey:@"tabtrigger"]] : [favorite objectForKey:@"name"]
attributes:attributes] autorelease];
NSMenuItem *item = [[NSMenuItem alloc] initWithTitle:@"" action:NULL keyEquivalent:@""];
- [item setToolTip:[NSString stringWithString:[favorite objectForKey:@"query"]]];
+ if ([favorite objectForKey:@"query"]) {
+ [item setToolTip:[NSString stringWithString:[favorite objectForKey:@"query"]]];
+ }
[item setAttributedTitle:titleString];
[item setIndentationLevel:1];
[menu addItem:item];
@@ -3433,7 +3435,9 @@
initWithString:([favorite objectForKey:@"tabtrigger"] && [(NSString*)[favorite objectForKey:@"tabtrigger"] length]) ? [NSString stringWithFormat:@"%@\t%@⇥", [favorite objectForKey:@"name"], [favorite objectForKey:@"tabtrigger"]] : [favorite objectForKey:@"name"]
attributes:attributes] autorelease];
NSMenuItem *item = [[NSMenuItem alloc] initWithTitle:@"" action:NULL keyEquivalent:@""];
- [item setToolTip:[NSString stringWithString:[favorite objectForKey:@"query"]]];
+ if ([favorite objectForKey:@"query"]) {
+ [item setToolTip:[NSString stringWithString:[favorite objectForKey:@"query"]]];
+ }
[item setAttributedTitle:titleString];
[item setIndentationLevel:1];
[menu addItem:item];