From e932255f596256e3899d58bd300acd83726d1e5d Mon Sep 17 00:00:00 2001 From: fyr77 Date: Mon, 2 Oct 2023 11:04:33 +0200 Subject: [PATCH] fix download button --- EnvyUpdate/DashboardPage.xaml.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/EnvyUpdate/DashboardPage.xaml.cs b/EnvyUpdate/DashboardPage.xaml.cs index a676e4d..f6ec952 100644 --- a/EnvyUpdate/DashboardPage.xaml.cs +++ b/EnvyUpdate/DashboardPage.xaml.cs @@ -462,7 +462,8 @@ namespace EnvyUpdate ShowSnackbar(Wpf.Ui.Common.ControlAppearance.Success, Wpf.Ui.Common.SymbolRegular.CheckmarkCircle24, Properties.Resources.info_install_complete, Properties.Resources.info_install_complete_title); buttonInstall.IsEnabled = true; buttonInstall.Visibility = Visibility.Collapsed; - buttonDownload.Visibility = Visibility.Visible; + buttonDownload.IsEnabled = true; + buttonDownload.Visibility = Visibility.Collapsed; })); Debug.LogToFile("INFO Driver setup complete. Cleaning up setup files.");