Added keyboard shortcuts hints to map controls

This commit is contained in:
Mitchell McCaffrey
2020-10-17 09:37:39 +11:00
parent 339bda47e2
commit 0235bdb7ef
10 changed files with 53 additions and 27 deletions

View File

@@ -27,19 +27,19 @@ function MeasureToolSettings({ settings, onSettingChange }) {
const tools = [
{
id: "chebyshev",
title: "Grid Distance",
title: "Grid Distance (G)",
isSelected: settings.type === "chebyshev",
icon: <MeasureChebyshevIcon />,
},
{
id: "euclidean",
title: "Line Distance",
title: "Line Distance (L)",
isSelected: settings.type === "euclidean",
icon: <MeasureEuclideanIcon />,
},
{
id: "manhattan",
title: "City Block Distance",
title: "City Block Distance (C)",
isSelected: settings.type === "manhattan",
icon: <MeasureManhattanIcon />,
},