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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 14 additions and 3 deletions

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,
},
});
}
}