diff --git a/app/src/utils/shortcutkeys/handleShortcutKeys.ts b/app/src/utils/shortcutkeys/handleShortcutKeys.ts index 73388d5..e3c484b 100644 --- a/app/src/utils/shortcutkeys/handleShortcutKeys.ts +++ b/app/src/utils/shortcutkeys/handleShortcutKeys.ts @@ -148,11 +148,10 @@ const KeyPressListener: React.FC = () => { setActiveTool("draw-floor"); setToolMode("Floor"); } - } else { - if (keyCombination === "M") { - setActiveTool("measure"); - setToolMode("MeasurementScale"); - } + } + if (keyCombination === "M") { + setActiveTool("measure"); + setToolMode("MeasurementScale"); } }