From f9fe9020074722ae024fbcc937adc58edccdbd5c Mon Sep 17 00:00:00 2001 From: Matt Kiazyk Date: Sat, 23 Jan 2021 15:41:49 -0600 Subject: [PATCH] Show ToolTip on progress indicator --- Xcodes/Frontend/Common/ProgressIndicator.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Xcodes/Frontend/Common/ProgressIndicator.swift b/Xcodes/Frontend/Common/ProgressIndicator.swift index 4c11f0a..b9c7e87 100644 --- a/Xcodes/Frontend/Common/ProgressIndicator.swift +++ b/Xcodes/Frontend/Common/ProgressIndicator.swift @@ -23,6 +23,7 @@ struct ProgressIndicator: NSViewRepresentable { nsView.controlSize = controlSize nsView.isIndeterminate = isIndeterminate nsView.style = style + nsView.toolTip = "Dowloading: \(Int(doubleValue * 100.0))% complete" } }