fix: invalidate third repo list when state is toggled

This commit is contained in:
goaaats 2023-01-07 15:27:29 +01:00
parent 24f42ccbe9
commit dbeb99bb63
No known key found for this signature in database
GPG key ID: 49E2AA8C6A76498B

View file

@ -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))