forked from rgthree/rgthree-comfy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rgthree_config.json.default
47 lines (47 loc) · 1.43 KB
/
rgthree_config.json.default
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// COPY THIS FILE BEFORE MAKING CHANGES TO: rgthree_config.json
{
"log_level": "WARN",
"features": {
"patch_recursive_execution": true,
"show_alerts_for_corrupt_workflows": false,
"monitor_for_corrupt_links": false,
"menu_queue_selected_nodes": true,
"menu_auto_nest": {
"subdirs": null,
"threshold": 20
},
"group_header_fast_toggle": {
"enabled": null,
"toggles": ["mute", "bypass"],
"show": "hover"
},
"progress_bar": {
"enabled": true,
"height": 16,
"position": "top"
},
// Enables invokeExtensionsAsync for rgthree-nodes allowing other extensions to hook into the
// nodes like the default ComfyNodes. This was not possible before Apr 2024, so it's a config
// entry in case it causes issues. This is only for the nodeCreated event/function as of now.
"invoke_extensions_async": {
"node_created": true
}
},
"nodes": {
"reroute": {
"default_width": 40,
"default_height": 30,
"default_resizable": false,
"default_layout": ["Left", "Right"],
"fast_reroute": {
"enabled": true,
"key_create_while_dragging_link" : "Shift + R",
"key_rotate": "Shift + A",
"key_resize": "Shift + X",
"key_move": "Shift + Z",
"key_connections_input": "Shift + S",
"key_connections_output": "Shift + D"
}
}
}
}