"tests/pipelines/vscode:/vscode.git/clone" did not exist on "5266ab7935dd9e9aec596cdc2464badf1eacd99a"
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 = { ...@@ -9,7 +9,7 @@ const ext = {
name: "Link Render Mode", name: "Link Render Mode",
defaultValue: 2, defaultValue: 2,
type: "combo", type: "combo",
options: LiteGraph.LINK_RENDER_MODES.map((m, i) => ({ options: [...LiteGraph.LINK_RENDER_MODES, "Hidden"].map((m, i) => ({
value: i, value: i,
text: m, text: m,
selected: i == app.canvas.links_render_mode, 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