fix: save config when closing plugin installer

This commit is contained in:
goat 2021-01-12 19:08:08 +01:00
parent 1e75bfdf3f
commit f5d2093db9

View file

@ -221,6 +221,7 @@ namespace Dalamud.Plugin
ImGui.SameLine(ImGui.GetWindowWidth() - ImGui.CalcTextSize(closeText).X - (16 * ImGui.GetIO().FontGlobalScale));
if (ImGui.Button(closeText)) {
windowOpen = false;
this.dalamud.Configuration.Save();
}