From d2e40d84bc27ed76fae67655a1df7c765e9cac75 Mon Sep 17 00:00:00 2001 From: Jackson <9527380+Jaksuhn@users.noreply.github.com> Date: Tue, 6 Feb 2024 11:17:33 +0000 Subject: [PATCH] name change --- AutoHook/IPC/AutoHookIPC.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/AutoHook/IPC/AutoHookIPC.cs b/AutoHook/IPC/AutoHookIPC.cs index 39a55c5..088c63b 100644 --- a/AutoHook/IPC/AutoHookIPC.cs +++ b/AutoHook/IPC/AutoHookIPC.cs @@ -1,5 +1,4 @@ using AutoHook.Configurations; -using System; using System.Linq; namespace AutoHook.IPC @@ -40,7 +39,7 @@ private static void SetPreset(string preset) private static void CreateAndSelectAnonymousPreset(string preset) { - var name = $"anon_{Guid.NewGuid()}"; + var name = $"anon_{preset}"; var _import = Configuration.ImportActionStack(preset); if (_import == null) return; _import.RenamePreset(name);