From: Bradley Sepos Date: Fri, 26 Jan 2018 02:14:41 +0000 (-0500) Subject: MacGUI: Use empty strings instead of "None" when Summary items are disabled. X-Git-Tag: 1.1.0~47 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7719c7e0e56d9b5d6548a3b06bf0eeb1de6da755;p=handbrake MacGUI: Use empty strings instead of "None" when Summary items are disabled. --- diff --git a/macosx/HBSummaryViewController.m b/macosx/HBSummaryViewController.m index 053660d68..e577e0210 100644 --- a/macosx/HBSummaryViewController.m +++ b/macosx/HBSummaryViewController.m @@ -255,9 +255,9 @@ static void *HBSummaryViewControllerSubsContext = &HBSummaryViewControllerSubsCo - (void)resetLabels { - self.tracksLabel.stringValue = NSLocalizedString(@"None", nil); - self.filtersLabel.stringValue = NSLocalizedString(@"None", nil); - self.dimensionLabel.stringValue = NSLocalizedString(@"None", nil); + self.tracksLabel.stringValue = NSLocalizedString(@"", nil); + self.filtersLabel.stringValue = NSLocalizedString(@"", nil); + self.dimensionLabel.stringValue = NSLocalizedString(@"", nil); self.tracksReloadInQueue = NO; self.filtersReloadInQueue = NO; self.pictureReloadInQueue = NO;