"...git@developer.sourcefind.cn:wangsen/paddle_dbnet.git" did not exist on "ec069632cbb6f463dbc5951e4fafc50abb667424"
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,8 +717,12 @@ export class ComfyApp { ...@@ -717,8 +717,12 @@ export class ComfyApp {
this.loadGraphData(workflow); this.loadGraphData(workflow);
} }
else { else {
if (e.target.type === "text" || e.target.type === "textarea") {
return;
}
// Litegraph default paste // Litegraph default paste
this.canvas.pasteFromClipboard(); 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