feat: make custom repo enabled by default

This commit is contained in:
goat 2021-01-05 21:02:06 +01:00
parent f0399d6af4
commit c15340212d

View file

@ -256,7 +256,8 @@ namespace Dalamud.Interface
ImGui.PushFont(InterfaceManager.IconFont); ImGui.PushFont(InterfaceManager.IconFont);
if (ImGui.Button(FontAwesomeIcon.Plus.ToIconString())) { if (ImGui.Button(FontAwesomeIcon.Plus.ToIconString())) {
this.thirdRepoList.Add(new ThirdRepoSetting { this.thirdRepoList.Add(new ThirdRepoSetting {
Url = this.thirdRepoTempUrl Url = this.thirdRepoTempUrl,
IsEnabled = true
}); });
this.thirdRepoTempUrl = string.Empty; this.thirdRepoTempUrl = string.Empty;