Fix 'C' to trigger wall preview

This commit is contained in:
Bruno Perdigão
2024-09-13 14:08:18 -03:00
parent a992844e93
commit 1659498c88
+1 -1
View File
@@ -352,7 +352,7 @@ class DrawPolylineWall(bpy.types.Operator, PolylineOperator):
self.handle_inserting_polyline(context, event)
if event.type in {"LEFTMOUSE", "RIGHTMOUSE", "RET", "NUMPAD_ENTER", "BACK_SPACE"}:
if event.type in {"C", "LEFTMOUSE", "RIGHTMOUSE", "RET", "NUMPAD_ENTER", "BACK_SPACE"}:
tool.Polyline.create_wall_preview_vertices(context, self.relating_type)
cancel = self.handle_cancelation(context, event)