CA-268105: fix the bug where the pool item is disabled when an update is already installed on one host in the pool

Signed-off-by: Mihaela Stoica <mihaela.stoica@citrix.com>
This commit is contained in:
Mihaela Stoica 2017-10-04 16:48:58 +01:00
parent 20d79ad6f4
commit b79d7923cc

View File

@ -589,8 +589,10 @@ namespace XenAdmin.Wizards.PatchingWizard
foreach (var host in pool.Connection.Cache.Hosts)
{
if (selectedServers.Contains(host))
{
dataGridViewHosts.CheckBoxChange(row.Index, POOL_CHECKBOX_COL);
break;
break;
}
}
}
}