mirror of
https://github.com/garethgeorge/backrest.git
synced 2025-12-16 18:45:36 +00:00
fix: Windows installer ToolTipIcon Info Enum (#799)
This commit is contained in:
@@ -175,7 +175,7 @@ Display temporary success notifications.
|
|||||||
Add-Type -AssemblyName System.Windows.Forms
|
Add-Type -AssemblyName System.Windows.Forms
|
||||||
$balloon = New-Object System.Windows.Forms.NotifyIcon
|
$balloon = New-Object System.Windows.Forms.NotifyIcon
|
||||||
$balloon.Icon = [System.Drawing.SystemIcons]::Information
|
$balloon.Icon = [System.Drawing.SystemIcons]::Information
|
||||||
$balloon.BalloonTipIcon = [System.Windows.Forms.ToolTipIcon]::Information
|
$balloon.BalloonTipIcon = [System.Windows.Forms.ToolTipIcon]::Info
|
||||||
$balloon.BalloonTipText = '{{ .Summary }}'
|
$balloon.BalloonTipText = '{{ .Summary }}'
|
||||||
$balloon.BalloonTipTitle = "Backrest"
|
$balloon.BalloonTipTitle = "Backrest"
|
||||||
$balloon.Visible = $true
|
$balloon.Visible = $true
|
||||||
|
|||||||
Reference in New Issue
Block a user