diff --git a/Xcodes/Frontend/Common/ProgressIndicator.swift b/Xcodes/Frontend/Common/ProgressIndicator.swift index b9c7e87..4c11f0a 100644 --- a/Xcodes/Frontend/Common/ProgressIndicator.swift +++ b/Xcodes/Frontend/Common/ProgressIndicator.swift @@ -23,7 +23,6 @@ struct ProgressIndicator: NSViewRepresentable { nsView.controlSize = controlSize nsView.isIndeterminate = isIndeterminate nsView.style = style - nsView.toolTip = "Dowloading: \(Int(doubleValue * 100.0))% complete" } } diff --git a/Xcodes/Frontend/XcodeList/InstallationStepView.swift b/Xcodes/Frontend/XcodeList/InstallationStepView.swift index 42d3f25..d88a775 100644 --- a/Xcodes/Frontend/XcodeList/InstallationStepView.swift +++ b/Xcodes/Frontend/XcodeList/InstallationStepView.swift @@ -17,6 +17,7 @@ struct InstallationStepView: View { controlSize: .small, style: .spinning ) + .help("Dowloading: \(Int((progress.fractionCompleted * 100)))% complete") case .unarchiving, .moving, .trashingArchive, .checkingSecurity, .finishing: ProgressView() .scaleEffect(0.5)