summaryrefslogtreecommitdiff
path: root/Aktywator/MainForm.cs
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2017-12-28 02:00:25 +0100
committeremkael <emkael@tlen.pl>2017-12-28 02:00:25 +0100
commit35cff76afbddb69edcb3503f86cea883963f13cf (patch)
tree25ebc78b20fad93f4aaa6c58ecb5bc7690a3b220 /Aktywator/MainForm.cs
parentfd382a796b78bd460ab7ad87af3f001f23f5a27c (diff)
Disabling default automatic updates of names list.
Fixes #22
Diffstat (limited to 'Aktywator/MainForm.cs')
-rw-r--r--Aktywator/MainForm.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/Aktywator/MainForm.cs b/Aktywator/MainForm.cs
index d510f42..bb6a45e 100644
--- a/Aktywator/MainForm.cs
+++ b/Aktywator/MainForm.cs
@@ -438,7 +438,6 @@ namespace Aktywator
tournament.clearCellLocks(namesGridView);
tournament.displayNameList(namesGridView);
tournament.clearCellLocks(namesGridView);
- namesTimer.Enabled = true;
}
else
{
@@ -630,6 +629,10 @@ namespace Aktywator
private void checkBox1_CheckedChanged(object sender, EventArgs e)
{
namesTimer.Enabled = checkBox1.Checked;
+ if (namesTimer.Enabled)
+ {
+ namesTimer_Tick(null, null);
+ }
}
private void lGroupSectionsWarning_Click(object sender, EventArgs e)