1
mirror of https://github.com/comfyanonymous/ComfyUI.git synced 2025-08-02 23:14:49 +08:00

change Convert.. input (#3246)

This commit is contained in:
NyaamZ
2024-04-13 06:02:17 +09:00
committed by GitHub
parent 4bd7d55b90
commit 2bef134ebf

View File

@@ -292,12 +292,23 @@ app.registerExtension({
}
}
}
//Convert.. main menu
if (toInput.length) {
options.push(...toInput, null);
options.push({
content: `Convert input to 🔘..`,
submenu: {
options: toInput,
},
});
}
if (toWidget.length) {
options.push(...toWidget, null);
options.push({
content: `Convert 🔘 to widget..`,
submenu: {
options: toWidget,
},
});
}
}