Show ToolTip on progress indicator

This commit is contained in:
Matt Kiazyk 2021-01-23 15:41:49 -06:00
parent d834f3ed74
commit f9fe902007
No known key found for this signature in database
GPG key ID: 967DBC53389132D7

View file

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