Put tooltip on installationStepView

This commit is contained in:
Matt Kiazyk 2021-01-23 17:13:07 -06:00
parent f9fe902007
commit 7fad56b3f7
No known key found for this signature in database
GPG key ID: 967DBC53389132D7
2 changed files with 1 additions and 1 deletions

View file

@ -23,7 +23,6 @@ struct ProgressIndicator: NSViewRepresentable {
nsView.controlSize = controlSize
nsView.isIndeterminate = isIndeterminate
nsView.style = style
nsView.toolTip = "Dowloading: \(Int(doubleValue * 100.0))% complete"
}
}

View file

@ -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)