From 9f59c633d17988bdef6bdad389b7550a434c4404 Mon Sep 17 00:00:00 2001 From: DanTheMan827 <790119+DanTheMan827@users.noreply.github.com> Date: Wed, 2 Sep 2020 10:26:50 -0500 Subject: [PATCH] Fix bug where the repo list fails to load when changing languages #365 --- MainForm.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/MainForm.cs b/MainForm.cs index f980da446..992a33a2f 100644 --- a/MainForm.cs +++ b/MainForm.cs @@ -322,6 +322,8 @@ private void MainForm_Shown(object sender, EventArgs e) // centralized upgrade actions system new Upgrade(this).Run(); + + // populate mod repository list populateRepos(); // nothing else will call this at the moment, so need to do it @@ -802,6 +804,7 @@ private void LoadLanguages() this.FormInitialize(); this.SyncConsoleSettings(true); this.SyncConsoleType(true); + this.populateRepos(); this.Show(); }; if (Thread.CurrentThread.CurrentUICulture.Name.ToUpper() == langCodes[language].ToUpper())