summaryrefslogtreecommitdiffstats
path: root/macosx/HBController.m
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/HBController.m')
-rw-r--r--macosx/HBController.m10
1 files changed, 9 insertions, 1 deletions
diff --git a/macosx/HBController.m b/macosx/HBController.m
index c7faf6257..ab33ad5fe 100644
--- a/macosx/HBController.m
+++ b/macosx/HBController.m
@@ -312,6 +312,14 @@
return contentSize;
}
+- (void)setNilValueForKey:(NSString *)key
+{
+ if ([key isEqualToString:@"scanSpecificTitleIdx"])
+ {
+ [self setValue:@0 forKey:key];
+ }
+}
+
#pragma mark - UI Validation
- (BOOL)validateToolbarItem:(NSToolbarItem *)toolbarItem
@@ -778,7 +786,7 @@
[[NSUserDefaults standardUserDefaults] setURL:panel.URL.URLByDeletingLastPathComponent forKey:@"HBLastSourceDirectoryURL"];
}
- NSInteger titleIdx = self.scanSpecificTitle ? self.scanSpecificTitle : 0;
+ NSInteger titleIdx = self.scanSpecificTitle ? self.scanSpecificTitleIdx : 0;
[self openURL:panel.URL titleIndex:titleIdx];
}
}];