summaryrefslogtreecommitdiff
path: root/Aktywator/MainForm.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Aktywator/MainForm.cs')
-rw-r--r--Aktywator/MainForm.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/Aktywator/MainForm.cs b/Aktywator/MainForm.cs
index 11718a7..1942dd2 100644
--- a/Aktywator/MainForm.cs
+++ b/Aktywator/MainForm.cs
@@ -280,12 +280,18 @@ namespace Aktywator
xRepeatResults.Enabled = true;
xShowPercentage.Enabled = true;
xResultsOverview.Enabled = true;
+ xGroupSections.Enabled = true;
}
else
{
xRepeatResults.Enabled = false;
xShowPercentage.Enabled = false;
xResultsOverview.Enabled = false;
+ xGroupSections.Enabled = false;
+ }
+ if (cbSettingsSection.Items.Count > 2)
+ {
+ bws.sectionGroupWarning();
}
}
@@ -557,5 +563,10 @@ namespace Aktywator
namesTimer.Enabled = checkBox1.Checked;
}
+ private void lGroupSectionsWarning_Click(object sender, EventArgs e)
+ {
+ MessageBox.Show("Opcja grupowania zapisów w sektorach (albo osobnego maksowania sektorów) nie może być zaktualizowana w trakcie trwania sesji!", "Ustawienia grupowania zapisów w sektorach", MessageBoxButtons.OK, MessageBoxIcon.Question);
+ }
+
}
}