From f5d2093db997ca19ca0972d415a5c90b9da9d0a6 Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Tue, 12 Jan 2021 19:08:08 +0100 Subject: [PATCH] fix: save config when closing plugin installer --- Dalamud/Plugin/PluginInstallerWindow.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Dalamud/Plugin/PluginInstallerWindow.cs b/Dalamud/Plugin/PluginInstallerWindow.cs index 8d9284ed7..fe3207b99 100644 --- a/Dalamud/Plugin/PluginInstallerWindow.cs +++ b/Dalamud/Plugin/PluginInstallerWindow.cs @@ -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(); }