From a695ba0abce83aa38187e95207bf150bb35502a5 Mon Sep 17 00:00:00 2001 From: Niko Ehrenfeuchter <nikolaus.ehrenfeuchter@unibas.ch> Date: Thu, 11 Jan 2018 11:27:12 +0100 Subject: [PATCH] Use a better color for highlighting a suspended service. Refers to #2 --- ATXTray/AutoTxTray.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ATXTray/AutoTxTray.cs b/ATXTray/AutoTxTray.cs index 8c2fd77..f191efe 100644 --- a/ATXTray/AutoTxTray.cs +++ b/ATXTray/AutoTxTray.cs @@ -191,7 +191,7 @@ namespace ATXTray _svcSuspendReason = _status.LimitReason; if (_svcSuspended) { _miSvcSuspended.Text = @"Service suspended, reason: " + _svcSuspendReason; - _miSvcSuspended.BackColor = Color.LightYellow; + _miSvcSuspended.BackColor = Color.LightSalmon; /* _notifyIcon.ShowBalloonTip(500, "AutoTx Monitor", "Service suspended: " + _status.LimitReason, ToolTipIcon.Warning); -- GitLab