Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/composables/canvas/useSelectionToolboxPosition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -236,9 +236,9 @@
// Unified dragging state - combines both LiteGraph and Vue node dragging
const isDragging = computed((): boolean => {
const litegraphDragging = canvasStore.canvas?.state?.draggingItems ?? false
const vueNodeDragging =

Check failure on line 239 in src/composables/canvas/useSelectionToolboxPosition.ts

View workflow job for this annotation

GitHub Actions / lint-and-format

'vueNodeDragging' is declared but its value is never read.

Check failure on line 239 in src/composables/canvas/useSelectionToolboxPosition.ts

View workflow job for this annotation

GitHub Actions / collect

'vueNodeDragging' is declared but its value is never read.

Check failure on line 239 in src/composables/canvas/useSelectionToolboxPosition.ts

View workflow job for this annotation

GitHub Actions / setup

'vueNodeDragging' is declared but its value is never read.
shouldRenderVueNodes.value && layoutStore.isDraggingVueNodes.value
return litegraphDragging || vueNodeDragging
return litegraphDragging
})

watch(isDragging, handleDragStateChange)
Expand Down
Loading