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; }