diff --git a/ATXTray/AutoTxTray.cs b/ATXTray/AutoTxTray.cs index fc0aa08e2375c55abd4690e77490eea382f874a4..5b3399b4b63c2878d425249b7dba480cc53462e1 100644 --- a/ATXTray/AutoTxTray.cs +++ b/ATXTray/AutoTxTray.cs @@ -166,13 +166,17 @@ namespace ATXTray if (_svcSuspended) { _miSvcSuspended.Text = @"Service suspended, reason: " + _status.LimitReason; _miSvcSuspended.BackColor = Color.LightYellow; + /* _notifyIcon.ShowBalloonTip(500, "AutoTx Monitor", "Service suspended: " + _status.LimitReason, ToolTipIcon.Warning); + */ } else { _miSvcSuspended.Text = @"No limits apply, service active."; _miSvcSuspended.BackColor = Color.LightGreen; + /* _notifyIcon.ShowBalloonTip(500, "AutoTx Monitor", "Service resumed, no limits apply.", ToolTipIcon.Info); + */ } } }