From 20f5af23deeef7f67b71841d15485737410d0d21 Mon Sep 17 00:00:00 2001 From: Kurt Hutten Irev-Dev Date: Thu, 1 May 2025 09:59:35 +1000 Subject: [PATCH] tweak selection filters --- src/machines/modelingMachine.ts | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/machines/modelingMachine.ts b/src/machines/modelingMachine.ts index 15d3a02a0..7ab10afeb 100644 --- a/src/machines/modelingMachine.ts +++ b/src/machines/modelingMachine.ts @@ -810,18 +810,6 @@ export const modelingMachine = setup({ sketchDetails: event.output, } }), - 'set selection filter to curves only': () => { - ;(async () => { - await engineCommandManager.sendSceneCommand({ - type: 'modeling_cmd_req', - cmd_id: uuidv4(), - cmd: { - type: 'set_selection_filter', - filter: ['curve'], - }, - }) - })().catch(reportRejection) - }, 'tear down client sketch': () => { sceneEntitiesManager.tearDownSketch({ removeAxis: false }) }, @@ -3329,7 +3317,6 @@ export const modelingMachine = setup({ entry: [ 'show default planes', 'reset camera position', - 'set selection filter to curves only', ], description: `We want to disable selections and hover highlights here, because users can't do anything with that information until they actually add something to the scene. The planes are just for orientation here.`, exit: 'set selection filter to defaults',