fix: clear rename field after deleting

This commit is contained in:
Anna 2020-07-30 18:50:50 -04:00
parent 47cb699c09
commit 77d527a161
1 changed files with 1 additions and 0 deletions

View File

@ -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();
}