mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-15 05:04:15 +01:00
fix: invalidate third repo list when state is toggled
This commit is contained in:
parent
24f42ccbe9
commit
dbeb99bb63
1 changed files with 5 additions and 1 deletions
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue