mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-04-20 03:13:30 +00:00
Allow pasting nodes with connections in firefox
This commit is contained in:
parent
3039b08eb1
commit
0e4395a8a3
@ -671,6 +671,10 @@ export class ComfyApp {
|
|||||||
*/
|
*/
|
||||||
#addPasteHandler() {
|
#addPasteHandler() {
|
||||||
document.addEventListener("paste", (e) => {
|
document.addEventListener("paste", (e) => {
|
||||||
|
// ctrl+shift+v is used to paste nodes with connections
|
||||||
|
// this is handled by litegraph
|
||||||
|
if(this.shiftDown) return;
|
||||||
|
|
||||||
let data = (e.clipboardData || window.clipboardData);
|
let data = (e.clipboardData || window.clipboardData);
|
||||||
const items = data.items;
|
const items = data.items;
|
||||||
|
|
||||||
@ -853,7 +857,7 @@ export class ComfyApp {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Ctrl+V Paste
|
// Ctrl+V Paste
|
||||||
if ((e.key === 'v' || e.key == 'V') && (e.metaKey || e.ctrlKey)) {
|
if ((e.key === 'v' || e.key == 'V') && (e.metaKey || e.ctrlKey) && !e.shiftKey) {
|
||||||
// Trigger onPaste
|
// Trigger onPaste
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user