mirror of
https://github.com/XcodesOrg/XcodesApp.git
synced 2026-03-25 08:55:46 +00:00
Put tooltip on installationStepView
This commit is contained in:
parent
f9fe902007
commit
7fad56b3f7
2 changed files with 1 additions and 1 deletions
|
|
@ -23,7 +23,6 @@ struct ProgressIndicator: NSViewRepresentable {
|
|||
nsView.controlSize = controlSize
|
||||
nsView.isIndeterminate = isIndeterminate
|
||||
nsView.style = style
|
||||
nsView.toolTip = "Dowloading: \(Int(doubleValue * 100.0))% complete"
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue