Move macros instead of swapping

This commit is contained in:
Asriel Camora
2023-11-18 01:07:31 -08:00
parent d186c426b3
commit 9bb76467b9
2 changed files with 10 additions and 1 deletions
+9
View File
@@ -119,6 +119,15 @@ public class Configuration : IPluginConfiguration
OnMacroListChanged?.Invoke();
}
public void MoveMacro(int fromIdx, int toIdx)
{
var macro = macros[fromIdx];
macros.RemoveAt(fromIdx);
macros.Insert(toIdx, macro);
Save();
OnMacroListChanged?.Invoke();
}
public void Save() =>
Service.PluginInterface.SavePluginConfig(this);
}