From f527bbf715bc1845a9db0773045329cad54aeab4 Mon Sep 17 00:00:00 2001 From: Jaex Date: Mon, 26 Mar 2018 16:21:39 +0300 Subject: [PATCH] Removed WASD support because it conflicts with tool keybinds --- ShareX.ScreenCaptureLib/Shapes/ShapeManager.cs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/ShareX.ScreenCaptureLib/Shapes/ShapeManager.cs b/ShareX.ScreenCaptureLib/Shapes/ShapeManager.cs index d31e4e50a..13341c82f 100644 --- a/ShareX.ScreenCaptureLib/Shapes/ShapeManager.cs +++ b/ShareX.ScreenCaptureLib/Shapes/ShapeManager.cs @@ -413,19 +413,15 @@ private void form_KeyDown(object sender, KeyEventArgs e) IsSnapResizing = true; break; case Keys.Left: - case Keys.A: isLeftPressed = true; break; case Keys.Right: - case Keys.D: isRightPressed = true; break; case Keys.Up: - case Keys.W: isUpPressed = true; break; case Keys.Down: - case Keys.S: isDownPressed = true; break; } @@ -652,19 +648,15 @@ private void form_KeyUp(object sender, KeyEventArgs e) IsSnapResizing = false; break; case Keys.Left: - case Keys.A: isLeftPressed = false; break; case Keys.Right: - case Keys.D: isRightPressed = false; break; case Keys.Up: - case Keys.W: isUpPressed = false; break; case Keys.Down: - case Keys.S: isDownPressed = false; break; }