diff --git a/Zotero/Scenes/Detail/Items/ViewModels/ItemsToolbarController.swift b/Zotero/Scenes/Detail/Items/ViewModels/ItemsToolbarController.swift index 9e8ce129e..6a9ecd7cd 100644 --- a/Zotero/Scenes/Detail/Items/ViewModels/ItemsToolbarController.swift +++ b/Zotero/Scenes/Detail/Items/ViewModels/ItemsToolbarController.swift @@ -160,7 +160,7 @@ final class ItemsToolbarController { var progress: Float? let remoteDownloading = remoteDownloadBatchData != nil let defaultAttributes: [NSAttributedString.Key: Any] = [.foregroundColor: UIColor.label, .font: UIFont.preferredFont(forTextStyle: .footnote)] - if identifierLookupBatchData != .zero, (!identifierLookupBatchData.isFinished || remoteDownloading) { + if identifierLookupBatchData != .zero, !identifierLookupBatchData.isFinished || remoteDownloading { // Show "Saved x / y" only if lookup hasn't finished, or there are also ongoing remote downloads isUserInteractionEnabled = true let identifierLookupText = L10n.Items.toolbarSaved(identifierLookupBatchData.saved, identifierLookupBatchData.total)