diff options
author | Damiano Galassi <[email protected]> | 2015-10-25 07:41:28 +0100 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2015-10-25 07:41:28 +0100 |
commit | 7d7740033448cf58d560efdfa0b78562f6aa62d1 (patch) | |
tree | cf49f413403e0308f122038db8ae9fc5a2ccfb86 /macosx/HBController.m | |
parent | b5a8b39d9b2efea411a02bc906f275fc78ba92b4 (diff) |
MacGui: remove the daily and monthly update check option.
Diffstat (limited to 'macosx/HBController.m')
-rw-r--r-- | macosx/HBController.m | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/macosx/HBController.m b/macosx/HBController.m index d4baf40f6..a0591bb67 100644 --- a/macosx/HBController.m +++ b/macosx/HBController.m @@ -487,13 +487,11 @@ { if (self.core.state != HBStateScanning && !self.job) { - // We show whichever open source window specified in LaunchSourceBehavior preference key - if ([[[NSUserDefaults standardUserDefaults] stringForKey:@"LaunchSourceBehavior"] isEqualToString: @"Open Source"]) + if ([[NSUserDefaults standardUserDefaults] boolForKey:@"HBShowOpenPanelAtLaunch"]) { [self browseSources:nil]; } } - } - (BOOL)openURL:(NSURL *)fileURL |