Don’t allow a Reviewer only user toggle the Include on Continuous Action Summary check box.

This commit is contained in:
John Jenko 2016-03-03 18:38:04 +00:00
parent 235024bef4
commit d67291bb2c

View File

@ -147,7 +147,8 @@ namespace Volian.Controls.Library
public void ToggleContActSummary() // for use with shortcut keystroke <Shift><F7> public void ToggleContActSummary() // for use with shortcut keystroke <Shift><F7>
{ {
cbCAS.Checked = !cbCAS.Checked; if (cbCAS.Enabled)
cbCAS.Checked = !cbCAS.Checked;
} }
public void TogglePlaceKeeper() // for use with shortcut keystroke <Ctrl><F7> public void TogglePlaceKeeper() // for use with shortcut keystroke <Ctrl><F7>
{ {