From b74d1085f05dad13d3e487255ae8d470f388a498 Mon Sep 17 00:00:00 2001 From: Jaex Date: Thu, 1 Dec 2016 18:15:45 +0300 Subject: [PATCH] Added hotkey Ctrl + Shift + Del to delete all shapes --- ShareX.ScreenCaptureLib/Shapes/ShapeManager.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ShareX.ScreenCaptureLib/Shapes/ShapeManager.cs b/ShareX.ScreenCaptureLib/Shapes/ShapeManager.cs index f7362dd3e..610c2a002 100644 --- a/ShareX.ScreenCaptureLib/Shapes/ShapeManager.cs +++ b/ShareX.ScreenCaptureLib/Shapes/ShapeManager.cs @@ -381,6 +381,9 @@ private void form_KeyDown(object sender, KeyEventArgs e) EndRegionSelection(); } break; + case Keys.Control | Keys.Shift | Keys.Delete: + DeleteAllShapes(); + break; case Keys.F1: Config.ShowHotkeys = !Config.ShowHotkeys; tsmiTips.Checked = Config.ShowHotkeys;