From e044a7cd4b7c9bcbab9d6ff84fe8532b15b1fce2 Mon Sep 17 00:00:00 2001 From: Mitchell McCaffrey Date: Thu, 5 Aug 2021 14:14:47 +1000 Subject: [PATCH] Change select tool shortcut --- src/components/map/MapControls.tsx | 2 +- src/shortcuts.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/map/MapControls.tsx b/src/components/map/MapControls.tsx index 29add17..5d9217b 100644 --- a/src/components/map/MapControls.tsx +++ b/src/components/map/MapControls.tsx @@ -126,7 +126,7 @@ function MapContols({ select: { id: "select", icon: , - title: "Select Tool (L)", + title: "Select Tool (S)", SettingsComponent: SelectToolSettings, }, fog: { diff --git a/src/shortcuts.ts b/src/shortcuts.ts index f5e95b7..677852c 100644 --- a/src/shortcuts.ts +++ b/src/shortcuts.ts @@ -86,7 +86,7 @@ const shortcuts: Record = { fogFinishPolygon: ({ key }) => key === "Enter", fogCancelPolygon: ({ key }) => key === "Escape", // Select tool - selectTool: (event) => singleKey(event, "l"), + selectTool: (event) => singleKey(event, "s"), selectPath: (event) => singleKey(event, "l"), selectRect: (event) => singleKey(event, "r"), // Stage interaction