From c8f6fd91609e211353e57e57516157947896f9b6 Mon Sep 17 00:00:00 2001 From: Niko Ehrenfeuchter <nikolaus.ehrenfeuchter@unibas.ch> Date: Thu, 8 Feb 2018 15:34:01 +0100 Subject: [PATCH] Disable balloon tips for service running / stopped. Refers to #2 --- ATxTray/AutoTxTray.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ATxTray/AutoTxTray.cs b/ATxTray/AutoTxTray.cs index 73be4aa..2a731b8 100644 --- a/ATxTray/AutoTxTray.cs +++ b/ATxTray/AutoTxTray.cs @@ -370,15 +370,19 @@ namespace ATxTray _miSvcRunning.BackColor = Color.LightGreen; _miTitle.BackColor = Color.LightGreen; _miSvcSuspended.Enabled = true; + /* _notifyIcon.ShowBalloonTip(500, AppTitle, "Service running.", ToolTipIcon.Info); + */ } else { _miSvcRunning.Text = @"Service NOT RUNNING!"; _miSvcRunning.BackColor = Color.LightCoral; _miTitle.BackColor = Color.LightCoral; _miSvcSuspended.Enabled = false; + /* _notifyIcon.ShowBalloonTip(500, AppTitle, "Service stopped.", ToolTipIcon.Error); + */ } } -- GitLab