aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ui
diff options
context:
space:
mode:
Diffstat (limited to 'ui')
-rw-r--r--ui/tray.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/ui/tray.go b/ui/tray.go
index 85ba9d54..22c37ab4 100644
--- a/ui/tray.go
+++ b/ui/tray.go
@@ -246,6 +246,8 @@ func (tray *Tray) SetTunnelState(tunnel *service.Tunnel, state service.TunnelSta
actions := tray.ContextMenu().Actions()
activeCIDRsAction := actions.At(1)
+ wasChecked := tunnelAction.Checked()
+
switch state {
case service.TunnelStarted:
activeCIDRsAction.SetText("")
@@ -263,13 +265,13 @@ func (tray *Tray) SetTunnelState(tunnel *service.Tunnel, state service.TunnelSta
}
tunnelAction.SetEnabled(true)
tunnelAction.SetChecked(true)
- if showNotifications {
+ if !wasChecked && showNotifications {
tray.ShowInfo("WireGuard Activated", fmt.Sprintf("The %s tunnel has been activated.", tunnel.Name))
}
case service.TunnelStopped:
tunnelAction.SetChecked(false)
- if showNotifications {
+ if wasChecked && showNotifications {
tray.ShowInfo("WireGuard Deactivated", fmt.Sprintf("The %s tunnel has been deactivated.", tunnel.Name))
}
}