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
No related branches found
No related tags found
No related merge requests found
......@@ -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);
*/
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment