From da62f00267499909203efaa150ebca1dfad338e2 Mon Sep 17 00:00:00 2001 From: geondo55 <102933884+geondo55@users.noreply.github.com> Date: Wed, 16 Jul 2025 11:54:28 +0900 Subject: [PATCH] =?UTF-8?q?Undo,=20Redo=20=EB=8B=A8=EC=B6=95=ED=82=A4=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/Scripts/Studio/Core/CommandInvoker.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/Studio/Core/CommandInvoker.cs b/Assets/Scripts/Studio/Core/CommandInvoker.cs index fe870e18..535637fe 100644 --- a/Assets/Scripts/Studio/Core/CommandInvoker.cs +++ b/Assets/Scripts/Studio/Core/CommandInvoker.cs @@ -72,7 +72,7 @@ namespace Studio.Command var shortcutTable = new Dictionary>(); shortcutTable.Add(KeyCode.LeftControl, new Dictionary()); shortcutTable[KeyCode.LeftControl].Add(KeyCode.Z, Undo); - shortcutTable[KeyCode.LeftControl].Add(KeyCode.X, Redo); + shortcutTable[KeyCode.LeftControl].Add(KeyCode.Y, Redo); var handler = new InputHandler(null, null, null, shortcutTable); return handler; }