From 545f68240ad0f3a600995bf0ff3871e65c0d0396 Mon Sep 17 00:00:00 2001 From: Anna Clemens Date: Thu, 30 Jul 2020 18:50:50 -0400 Subject: [PATCH] fix: clear rename field after deleting --- HudSwap/PluginUI.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/HudSwap/PluginUI.cs b/HudSwap/PluginUI.cs index 4b863e2..20cbd33 100644 --- a/HudSwap/PluginUI.cs +++ b/HudSwap/PluginUI.cs @@ -113,6 +113,7 @@ namespace HudSwap { if (ImGui.Button("Delete") && this.selectedLayout != null) { this.plugin.config.Layouts.Remove(this.selectedLayout); this.selectedLayout = Guid.Empty; + this.renameName = ""; this.plugin.config.Save(); }