diff --git a/ATxTray/AutoTxTray.cs b/ATxTray/AutoTxTray.cs index 73be4aaa655264cc8aa54ee89a9c5e7817a48259..2a731b844ad41e02db380b6bf2bf6c99c0265ed2 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); + */ } }