fix: Windows installer ToolTipIcon Info Enum (#799)

This commit is contained in:
4fosaefp
2025-06-22 20:49:46 -04:00
committed by GitHub
parent 39f0c092e4
commit cd67858a34

View File

@@ -175,7 +175,7 @@ Display temporary success notifications.
Add-Type -AssemblyName System.Windows.Forms
$balloon = New-Object System.Windows.Forms.NotifyIcon
$balloon.Icon = [System.Drawing.SystemIcons]::Information
$balloon.BalloonTipIcon = [System.Windows.Forms.ToolTipIcon]::Information
$balloon.BalloonTipIcon = [System.Windows.Forms.ToolTipIcon]::Info
$balloon.BalloonTipText = '{{ .Summary }}'
$balloon.BalloonTipTitle = "Backrest"
$balloon.Visible = $true