Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
ComfyUI
Commits
264867bf
"vscode:/vscode.git/clone" did not exist on "4f1df69d1a4faf56b58673886af4b83d919a0c6e"
Commit
264867bf
authored
Sep 08, 2023
by
Michael Abrahams
Browse files
Clear clipboard on copy
parent
1e6b6710
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
5 deletions
+16
-5
web/scripts/app.js
web/scripts/app.js
+16
-5
No files found.
web/scripts/app.js
View file @
264867bf
...
@@ -735,9 +735,17 @@ export class ComfyApp {
...
@@ -735,9 +735,17 @@ export class ComfyApp {
*/
*/
#
addCopyHandler
()
{
#
addCopyHandler
()
{
document
.
addEventListener
(
"
copy
"
,
(
e
)
=>
{
document
.
addEventListener
(
"
copy
"
,
(
e
)
=>
{
// copy
if
(
e
.
target
.
type
===
"
text
"
||
e
.
target
.
type
===
"
textarea
"
)
{
// Default system copy
return
;
}
// copy nodes and clear clipboard
if
(
this
.
canvas
.
selected_nodes
)
{
if
(
this
.
canvas
.
selected_nodes
)
{
this
.
canvas
.
copyToClipboard
();
this
.
canvas
.
copyToClipboard
();
e
.
clipboardData
.
clearData
();
e
.
preventDefault
();
e
.
stopImmediatePropagation
();
return
false
;
}
}
});
});
}
}
...
@@ -842,10 +850,13 @@ export class ComfyApp {
...
@@ -842,10 +850,13 @@ export class ComfyApp {
if
((
e
.
key
===
'
c
'
)
&&
(
e
.
metaKey
||
e
.
ctrlKey
))
{
if
((
e
.
key
===
'
c
'
)
&&
(
e
.
metaKey
||
e
.
ctrlKey
))
{
if
(
e
.
shiftKey
)
{
if
(
e
.
shiftKey
)
{
this
.
copyToClipboard
(
true
);
this
.
copyToClipboard
(
true
);
e
.
clipboardData
.
clearData
();
block_default
=
true
;
block_default
=
true
;
}
}
// Trigger default onCopy
else
{
return
true
;
// Trigger onCopy
return
true
;
}
}
}
// Ctrl+V Paste
// Ctrl+V Paste
...
@@ -855,7 +866,7 @@ export class ComfyApp {
...
@@ -855,7 +866,7 @@ export class ComfyApp {
block_default
=
true
;
block_default
=
true
;
}
}
else
{
else
{
// Trigger
default
onPaste
// Trigger onPaste
return
true
;
return
true
;
}
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment