Skip to content

Commit

Permalink
fixes #217
Browse files Browse the repository at this point in the history
  • Loading branch information
borzel committed Jan 12, 2024
1 parent 8b32a01 commit 21f2b87
Showing 1 changed file with 0 additions and 33 deletions.
33 changes: 0 additions & 33 deletions XenAdmin/MainWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -926,39 +926,6 @@ private void connection_CachePopulated(IXenConnection connection)
if (HelpersGUI.iSCSIisUsed())
HelpersGUI.PerformIQNCheck();

if (!Program.RunInAutomatedTestMode && !Helpers.CloudOrGreater(coordinator))
{
Program.BeginInvoke(Program.MainWindow, () =>
{
if (Properties.Settings.Default.SeenAllowCfuUpdatesDialog)
return;

Properties.Settings.Default.SeenAllowCfuUpdatesDialog = true;
Settings.TrySaveSettings();

bool launch;
using (var dlg = new NoIconDialog(string.Format(Messages.ALLOWED_UPDATES_DIALOG_MESSAGE_CFU, BrandManager.BrandConsole, BrandManager.ProductVersion821),
ThreeButtonDialog.ButtonYes, ThreeButtonDialog.ButtonNo)
{
HelpButton = true,
HelpNameSetter = "AllowUpdatesDialog",
ShowCheckbox = false
})
{
launch = dlg.ShowDialog(this) == DialogResult.Yes;
}

//if (launch)
//{
// using (var dialog = new ConfigUpdatesDialog())
// {
// dialog.SelectLcmTab();
// dialog.ShowDialog(this);
// }
//}
});
}

RequestRefreshTreeView();
CheckTlsVerification(connection);
}
Expand Down

0 comments on commit 21f2b87

Please sign in to comment.