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
7567c4ac
Commit
7567c4ac
authored
Aug 15, 2023
by
comfyanonymous
Browse files
Add bypass to readme and add a Bypass menu option to the nodes.
parent
a2ce9655
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
README.md
README.md
+1
-0
web/scripts/app.js
web/scripts/app.js
+5
-0
No files found.
README.md
View file @
7567c4ac
...
...
@@ -47,6 +47,7 @@ Workflow examples can be found on the [Examples page](https://comfyanonymous.git
| Ctrl + O | Load workflow |
| Ctrl + A | Select all nodes |
| Ctrl + M | Mute/unmute selected nodes |
| Ctrl + B | Bypass selected nodes (acts like the node was removed from the graph and the wires reconnected through) |
| Delete/Backspace | Delete selected nodes |
| Ctrl + Delete/Backspace | Delete the current graph |
| Space | Move the canvas around when held and moving the cursor |
...
...
web/scripts/app.js
View file @
7567c4ac
...
...
@@ -284,6 +284,11 @@ export class ComfyApp {
}
}
options
.
push
({
content
:
"
Bypass
"
,
callback
:
(
obj
)
=>
{
if
(
this
.
mode
===
4
)
this
.
mode
=
0
;
else
this
.
mode
=
4
;
this
.
graph
.
change
();
}
});
// prevent conflict of clipspace content
if
(
!
ComfyApp
.
clipspace_return_node
)
{
options
.
push
({
...
...
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