diff options
author | Bradley Sepos <[email protected]> | 2018-01-25 21:14:41 -0500 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2018-01-25 21:34:30 -0500 |
commit | 7719c7e0e56d9b5d6548a3b06bf0eeb1de6da755 (patch) | |
tree | 149c1d418edbe19c9ca65b9fa8bf28babc0e0b50 /macosx/HBSummaryViewController.m | |
parent | 8b11aeeaea6da16d427e6c2708f2a1ebab1b8e7e (diff) |
MacGUI: Use empty strings instead of "None" when Summary items are disabled.
Diffstat (limited to 'macosx/HBSummaryViewController.m')
-rw-r--r-- | macosx/HBSummaryViewController.m | 6 |
1 files changed, 3 insertions, 3 deletions
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; |