mirror of
https://github.com/kwsch/pk3DS.git
synced 2026-09-10 19:15:36 -05:00
Use Items.Count rather than hardcoding
This commit is contained in:
@@ -385,7 +385,7 @@ private void B_ModifyAll(object sender, EventArgs e)
|
||||
}
|
||||
|
||||
if (CHK_FullTMCompatibility.Checked)
|
||||
for (int t = 0; t < 100; t++)
|
||||
for (int t = 0; t < CLB_TM.Items.Count; t++)
|
||||
CLB_TM.SetItemCheckState(t, CheckState.Checked);
|
||||
|
||||
if (CHK_QuickHatch.Checked)
|
||||
|
||||
Reference in New Issue
Block a user