mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-29 10:42:44 +00:00
fix: prevent middle mouse button from triggering node resize in vueNodes mode (#7511)
## Summary Only left mouse button (button === 0) should trigger resize, matching litegraph behavior. fix https://github.com/Comfy-Org/ComfyUI_frontend/issues/7476 ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-7511-fix-prevent-middle-mouse-button-from-triggering-node-resize-in-vueNodes-mode-2ca6d73d3650817b9553f4abbdde3784) by [Unito](https://www.unito.io)
This commit is contained in:
@@ -334,6 +334,7 @@ const { startResize } = useNodeResize((result, element) => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
const handleResizePointerDown = (event: PointerEvent) => {
|
const handleResizePointerDown = (event: PointerEvent) => {
|
||||||
|
if (event.button !== 0) return
|
||||||
if (nodeData.flags?.pinned) return
|
if (nodeData.flags?.pinned) return
|
||||||
startResize(event)
|
startResize(event)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user