From 1602937be3888e6eb8b89cf9a9cd80ebdc174f83 Mon Sep 17 00:00:00 2001 From: Jeddunk Date: Tue, 19 Jan 2021 13:35:13 +0100 Subject: [PATCH] Automatically look up DLC when looking for AppID and when opening file with no config. --- GoldbergGUI.Core/ViewModels/MainViewModel.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/GoldbergGUI.Core/ViewModels/MainViewModel.cs b/GoldbergGUI.Core/ViewModels/MainViewModel.cs index d5058c0..587711b 100644 --- a/GoldbergGUI.Core/ViewModels/MainViewModel.cs +++ b/GoldbergGUI.Core/ViewModels/MainViewModel.cs @@ -309,6 +309,7 @@ namespace GoldbergGUI.Core.ViewModels DllPath = dialog.FileName; await ReadConfig().ConfigureAwait(false); + if (!GoldbergApplied) await GetListOfDlc().ConfigureAwait(false); MainWindowEnabled = true; StatusText = "Ready."; } @@ -365,7 +366,7 @@ namespace GoldbergGUI.Core.ViewModels await FindIdInList(steamApps).ConfigureAwait(false); } } - + await GetListOfDlc().ConfigureAwait(false); MainWindowEnabled = true; StatusText = "Ready."; }