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,
editorInterface: EditorInterface,
) => {
if (appState.selectedLinearElement?.isEditing) {
if (
appState.selectedLinearElement?.isEditing ||
appState.selectedLinearElement?.isDragging
) {
return false;
}
if (elements.length > 1) {