feat: hide bbox when dragging points

This commit is contained in:
dwelle
2025-11-12 22:31:37 +01:00
parent 9c0e715cb8
commit 0441785552

View File

@@ -330,7 +330,10 @@ export const hasBoundingBox = (
appState: InteractiveCanvasAppState, appState: InteractiveCanvasAppState,
editorInterface: EditorInterface, editorInterface: EditorInterface,
) => { ) => {
if (appState.selectedLinearElement?.isEditing) { if (
appState.selectedLinearElement?.isEditing ||
appState.selectedLinearElement?.isDragging
) {
return false; return false;
} }
if (elements.length > 1) { if (elements.length > 1) {