Skip to content
Snippets Groups Projects
Commit ffd6e0b2 authored by Niko Ehrenfeuchter's avatar Niko Ehrenfeuchter :keyboard:
Browse files

Don't show balloon tips for being suspended.

Refers to #2
parent 063eb30b
Branches
Tags
No related merge requests found
...@@ -166,13 +166,17 @@ namespace ATXTray ...@@ -166,13 +166,17 @@ namespace ATXTray
if (_svcSuspended) { if (_svcSuspended) {
_miSvcSuspended.Text = @"Service suspended, reason: " + _status.LimitReason; _miSvcSuspended.Text = @"Service suspended, reason: " + _status.LimitReason;
_miSvcSuspended.BackColor = Color.LightYellow; _miSvcSuspended.BackColor = Color.LightYellow;
/*
_notifyIcon.ShowBalloonTip(500, "AutoTx Monitor", _notifyIcon.ShowBalloonTip(500, "AutoTx Monitor",
"Service suspended: " + _status.LimitReason, ToolTipIcon.Warning); "Service suspended: " + _status.LimitReason, ToolTipIcon.Warning);
*/
} else { } else {
_miSvcSuspended.Text = @"No limits apply, service active."; _miSvcSuspended.Text = @"No limits apply, service active.";
_miSvcSuspended.BackColor = Color.LightGreen; _miSvcSuspended.BackColor = Color.LightGreen;
/*
_notifyIcon.ShowBalloonTip(500, "AutoTx Monitor", _notifyIcon.ShowBalloonTip(500, "AutoTx Monitor",
"Service resumed, no limits apply.", ToolTipIcon.Info); "Service resumed, no limits apply.", ToolTipIcon.Info);
*/
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment