From bcec1738ab09da6338a00b0f6675fc8c5ff4c5c9 Mon Sep 17 00:00:00 2001 From: Cj <161484149+CJ-SPT@users.noreply.github.com> Date: Wed, 19 Jun 2024 08:59:16 -0400 Subject: [PATCH] rename method --- RecodeItGUI/GUI/Main.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/RecodeItGUI/GUI/Main.cs b/RecodeItGUI/GUI/Main.cs index 25d4979..0e2daf9 100644 --- a/RecodeItGUI/GUI/Main.cs +++ b/RecodeItGUI/GUI/Main.cs @@ -182,7 +182,7 @@ public partial class ReCodeItForm : Form DataProvider.SaveMapping(); } - ResetAll(); + ResetAllRemapFields(); return; } @@ -198,7 +198,7 @@ public partial class ReCodeItForm : Form } RemapTreeView.Nodes.Add(GUIHelpers.GenerateTreeNode(newRemap, this)); - ResetAll(); + ResetAllRemapFields(); } private void RemoveRemapButton_Click(object sender, EventArgs e) @@ -891,7 +891,7 @@ public partial class ReCodeItForm : Form #endregion CROSS_COMPILER // Reset All UI elements to default - private void ResetAll() + private void ResetAllRemapFields() { PopulateDomainUpDowns(); @@ -950,7 +950,7 @@ public partial class ReCodeItForm : Form _selectedRemapTreeIndex = RemapTreeView.SelectedNode.Index; - ResetAll(); + ResetAllRemapFields(); var remap = AppSettings.Remapper.UseProjectMappings ? CrossCompiler.ActiveProject.RemapModels.ElementAt(_selectedRemapTreeIndex)