Commit f368e5ac authored by comfyanonymous's avatar comfyanonymous
Browse files

Don't paste nodes when target is a textarea or a text box.

parent 2d9d3ca3
......@@ -717,6 +717,10 @@ export class ComfyApp {
this.loadGraphData(workflow);
}
else {
if (e.target.type === "text" || e.target.type === "textarea") {
return;
}
// Litegraph default paste
this.canvas.pasteFromClipboard();
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment