From d67291bb2c04b3864073aaefc1355427d2ba34c9 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 3 Mar 2016 18:38:04 +0000 Subject: [PATCH] =?UTF-8?q?Don=E2=80=99t=20allow=20a=20Reviewer=20only=20u?= =?UTF-8?q?ser=20toggle=20the=20Include=20on=20Continuous=20Action=20Summa?= =?UTF-8?q?ry=20check=20box.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PROMS/Volian.Controls.Library/DisplayTags.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PROMS/Volian.Controls.Library/DisplayTags.cs b/PROMS/Volian.Controls.Library/DisplayTags.cs index 1fdb3f89..b984e05a 100644 --- a/PROMS/Volian.Controls.Library/DisplayTags.cs +++ b/PROMS/Volian.Controls.Library/DisplayTags.cs @@ -147,7 +147,8 @@ namespace Volian.Controls.Library public void ToggleContActSummary() // for use with shortcut keystroke { - cbCAS.Checked = !cbCAS.Checked; + if (cbCAS.Enabled) + cbCAS.Checked = !cbCAS.Checked; } public void TogglePlaceKeeper() // for use with shortcut keystroke {