"docs/source/ko/using-diffusers/img2img.mdx" did not exist on "44968e42047140e6a8192b5e65a9b03e5053ddc3"
Unverified Commit af321970 authored by Gregor Adams's avatar Gregor Adams Committed by GitHub
Browse files

feat(extensions): Allow hiding link connectors

Thank you for adding this feature (linksRenderMode) to core. I would like to add the "Hidden" option (invalid number 3 will just hide the connector lines), so that I can remove that extension from my extension pack to prevent conflicts

https://github.com/failfa-st/failfast-comfyui-extensions
parent a5599ed4
......@@ -9,7 +9,7 @@ const ext = {
name: "Link Render Mode",
defaultValue: 2,
type: "combo",
options: LiteGraph.LINK_RENDER_MODES.map((m, i) => ({
options: [...LiteGraph.LINK_RENDER_MODES, "Hidden"].map((m, i) => ({
value: i,
text: m,
selected: i == app.canvas.links_render_mode,
......
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