We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dee7900 commit 6d0e99cCopy full SHA for 6d0e99c
Source/Menu/ContentForm.cs
@@ -1582,9 +1582,9 @@ string determineUniqueRoute(string Route)
1582
while (!found)
1583
{
1584
found = true;
1585
- for (int i = 0; i < dataGridViewManualInstall.Rows.Count - 1; i++)
+ for (int i = 0; i < dataGridViewManualInstall.Rows.Count; i++)
1586
1587
- if (((dataGridViewManualInstall.Rows[i].Cells[0].Value.ToString() == route) && (!dataGridViewManualInstall.Rows[i].Selected)) ||
+ if (((!dataGridViewManualInstall.Rows[i].Selected)) && (dataGridViewManualInstall.Rows[i].Cells[0].Value.ToString() == route) ||
1588
(AutoInstallRoutes.ContainsKey(route))) {
1589
seqNr++;
1590
route = Route + " (" + seqNr + ")";
0 commit comments