From e2afb34e0dcc07c6a5bda887db28a6b6c1e93987 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Wed, 22 Mar 2023 10:09:38 +0500 Subject: [PATCH] Fixed typo causing #2889 --- src/blenderbim/blenderbim/bim/module/cad/workspace.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/blenderbim/blenderbim/bim/module/cad/workspace.py b/src/blenderbim/blenderbim/bim/module/cad/workspace.py index 976cff7f4d..79ca04938f 100644 --- a/src/blenderbim/blenderbim/bim/module/cad/workspace.py +++ b/src/blenderbim/blenderbim/bim/module/cad/workspace.py @@ -139,7 +139,7 @@ class CadTool(WorkSpaceTool): row = layout.row(align=True) row.label(text="", icon="EVENT_SHIFT") row.label(text="", icon="EVENT_Q") - row.operator("bim.hotkey", text="Apply Railing Path").hotkey = "S_Q" + row.operator("bim.cad_hotkey", text="Apply Railing Path").hotkey = "S_Q" row.operator("bim.cancel_editing_railing_path", icon="CANCEL", text="") elif ( @@ -150,7 +150,7 @@ class CadTool(WorkSpaceTool): row = layout.row(align=True) row.label(text="", icon="EVENT_SHIFT") row.label(text="", icon="EVENT_Q") - row.operator("bim.hotkey", text="Apply Roof Path").hotkey = "S_Q" + row.operator("bim.cad_hotkey", text="Apply Roof Path").hotkey = "S_Q" row.operator("bim.cancel_editing_roof_path", icon="CANCEL", text="") row = layout.row(align=True)