diff --git a/Engines/FlatRedBallXNA/FlatRedBall/Input/Keyboard.cs b/Engines/FlatRedBallXNA/FlatRedBall/Input/Keyboard.cs index 9ab7f5209..cc4d0805d 100644 --- a/Engines/FlatRedBallXNA/FlatRedBall/Input/Keyboard.cs +++ b/Engines/FlatRedBallXNA/FlatRedBall/Input/Keyboard.cs @@ -44,7 +44,7 @@ public enum KeyAction public bool AutomaticallyPushEventsToInputReceiver { get; set; } = true; - public bool IsShiftDown => KeyDown(Keys.LeftShift) || KeyDown(Keys.LeftShift); + public bool IsShiftDown => KeyDown(Keys.LeftShift) || KeyDown(Keys.RightShift); public bool IsCtrlDown => KeyDown(Keys.LeftControl) || KeyDown(Keys.RightControl); public bool IsControlDown => IsCtrlDown; public bool IsAltDown => KeyDown(Keys.LeftAlt) || KeyDown(Keys.RightAlt);