From dbeb99bb6372efd53d835348c3654c6cdca4737e Mon Sep 17 00:00:00 2001 From: goaaats Date: Sat, 7 Jan 2023 15:27:29 +0100 Subject: [PATCH] fix: invalidate third repo list when state is toggled --- .../Windows/Settings/Widgets/ThirdRepoSettingsEntry.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dalamud/Interface/Internal/Windows/Settings/Widgets/ThirdRepoSettingsEntry.cs b/Dalamud/Interface/Internal/Windows/Settings/Widgets/ThirdRepoSettingsEntry.cs index e410b3482..37876811f 100644 --- a/Dalamud/Interface/Internal/Windows/Settings/Widgets/ThirdRepoSettingsEntry.cs +++ b/Dalamud/Interface/Internal/Windows/Settings/Widgets/ThirdRepoSettingsEntry.cs @@ -131,7 +131,11 @@ public class ThirdRepoSettingsEntry : SettingsEntry ImGui.NextColumn(); ImGui.SetCursorPosX(ImGui.GetCursorPosX() + (ImGui.GetColumnWidth() / 2) - 7 - (12 * ImGuiHelpers.GlobalScale)); - ImGui.Checkbox("##thirdRepoCheck", ref isEnabled); + if (ImGui.Checkbox("##thirdRepoCheck", ref isEnabled)) + { + this.thirdRepoListChanged = true; + } + ImGui.NextColumn(); if (ImGuiComponents.IconButton(FontAwesomeIcon.Trash))