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

@@ -41,30 +41,30 @@ function MapContols({
pan: {
id: "pan",
icon: <PanToolIcon />,
title: "Pan Tool",
title: "Pan Tool (W)",
},
fog: {
id: "fog",
icon: <FogToolIcon />,
title: "Fog Tool",
title: "Fog Tool (F)",
SettingsComponent: FogToolSettings,
},
drawing: {
id: "drawing",
icon: <BrushToolIcon />,
title: "Drawing Tool",
title: "Drawing Tool (D)",
SettingsComponent: DrawingToolSettings,
},
measure: {
id: "measure",
icon: <MeasureToolIcon />,
title: "Measure Tool",
title: "Measure Tool (M)",
SettingsComponent: MeasureToolSettings,
},
pointer: {
id: "pointer",
icon: <PointerToolIcon />,
title: "Pointer Tool",
title: "Pointer Tool (Q)",
},
};
const tools = ["pan", "fog", "drawing", "measure", "pointer"];