From c15340212dffc7b92514fc0894e2237caadfc9da Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Tue, 5 Jan 2021 21:02:06 +0100 Subject: [PATCH] feat: make custom repo enabled by default --- Dalamud/Interface/DalamudSettingsWindow.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dalamud/Interface/DalamudSettingsWindow.cs b/Dalamud/Interface/DalamudSettingsWindow.cs index 747daa604..b1fc5789a 100644 --- a/Dalamud/Interface/DalamudSettingsWindow.cs +++ b/Dalamud/Interface/DalamudSettingsWindow.cs @@ -256,7 +256,8 @@ namespace Dalamud.Interface ImGui.PushFont(InterfaceManager.IconFont); if (ImGui.Button(FontAwesomeIcon.Plus.ToIconString())) { this.thirdRepoList.Add(new ThirdRepoSetting { - Url = this.thirdRepoTempUrl + Url = this.thirdRepoTempUrl, + IsEnabled = true }); this.thirdRepoTempUrl = string.Empty;