"git@developer.sourcefind.cn:chenpangpang/ComfyUI.git" did not exist on "496de0891d9b7ae37c6dbbc68c5e22802302dc8f"
Unverified Commit 2bef134e authored by NyaamZ's avatar NyaamZ Committed by GitHub
Browse files

change Convert.. input (#3246)

parent 4bd7d55b
...@@ -292,12 +292,23 @@ app.registerExtension({ ...@@ -292,12 +292,23 @@ app.registerExtension({
} }
} }
} }
//Convert.. main menu
if (toInput.length) { if (toInput.length) {
options.push(...toInput, null); options.push({
content: `Convert input to 🔘..`,
submenu: {
options: toInput,
},
});
} }
if (toWidget.length) { if (toWidget.length) {
options.push(...toWidget, null); options.push({
content: `Convert 🔘 to widget..`,
submenu: {
options: toWidget,
},
});
} }
} }
......
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