summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2018-04-13 16:59:21 +0200
committeremkael <emkael@tlen.pl>2018-04-13 16:59:21 +0200
commit5ae44afb4d3e63c9a7020689ffe3a2f14a5cc669 (patch)
tree99465538de81a60aed535b2383022450e4606ae1
parent59a523137b5a8dccee77c23493b34b8862532992 (diff)
Showing warning in settings panel if there are different hand records in multiple sections
-rw-r--r--Aktywator/MainForm.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Aktywator/MainForm.cs b/Aktywator/MainForm.cs
index d2cb88b..96b66a7 100644
--- a/Aktywator/MainForm.cs
+++ b/Aktywator/MainForm.cs
@@ -324,14 +324,14 @@ namespace Aktywator
static public string sectionGroupWarningLabel = "Opcja grupowania zapisów w sektorach (albo osobnego maksowania sektorów) nie może być zaktualizowana w trakcie trwania sesji!";
static public string differentRecordsInSections = "BWS zawiera różne rozkłady w różnych sektorach, opcja grupowania sektorów musi być wyłączona.";
- private void xShowResults_CheckedChanged(object sender, EventArgs e)
+ public void xShowResults_CheckedChanged(object sender, EventArgs e)
{
if (xShowResults.Checked)
{
xRepeatResults.Enabled = true;
xShowPercentage.Enabled = true;
xResultsOverview.Enabled = true;
- xGroupSections.Enabled = true;
+ xGroupSections.Enabled = !bws.detectDifferentRecordsInSections();
}
else
{
@@ -341,7 +341,7 @@ namespace Aktywator
xResultsOverview.Enabled = false;
xGroupSections.Enabled = false;
}
- if (cbSettingsSection.Items.Count > 2)
+ if (cbSettingsSection.Items.Count > 2 || bws.detectDifferentRecordsInSections())
{
bws.sectionGroupWarning();
}