summaryrefslogtreecommitdiff
path: root/Aktywator/MainForm.cs
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2017-08-23 17:26:29 +0200
committeremkael <emkael@tlen.pl>2017-08-23 17:26:29 +0200
commite163f07d1c39f122a12fcb503fe75dd15aabe0ae (patch)
treee0261586a0787c9c407203f7e1c95ed53c98a32e /Aktywator/MainForm.cs
parent7a496566f759a5aac8b56d46c1b9eb36bdcb3f52 (diff)
Configurable table offset for Teamy tournaments
Diffstat (limited to 'Aktywator/MainForm.cs')
-rw-r--r--Aktywator/MainForm.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Aktywator/MainForm.cs b/Aktywator/MainForm.cs
index 4eec352..a359dbb 100644
--- a/Aktywator/MainForm.cs
+++ b/Aktywator/MainForm.cs
@@ -348,18 +348,18 @@ namespace Aktywator
if (tournament.GetType().Equals(typeof(TeamyTournament)))
{
lSkok.Visible = true;
- lNazwyTeamow.Visible = true;
+ numTeamsTableOffset.Visible = true;
}
else
{
lSkok.Visible = false;
- lNazwyTeamow.Visible = false;
+ numTeamsTableOffset.Visible = false;
}
}
else
{
lSkok.Visible = false;
- lNazwyTeamow.Visible = false;
+ numTeamsTableOffset.Visible = false;
}
}