Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,10 @@ export function useNodePointerInteractions(
safeDragEnd(event)
return
}

// Skip selection handling for right-click (button 2) - context menu handles its own selection
if (event.button === 2) return

const multiSelect = isMultiSelectKey(event)

const nodeId = toValue(nodeIdRef)
Expand Down
4 changes: 3 additions & 1 deletion src/scripts/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1457,7 +1457,9 @@ export class ComfyApp {
})
return
} else {
console.error('Invalid workflow structure, trying parameters fallback')
console.error(
'Invalid workflow structure, trying parameters fallback'
)
this.showErrorOnFileLoad(file)
}
} catch (err) {
Expand Down
Loading