mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-07-08 20:14:00 -04:00
Merge pull request #1233 from ericrosenbaum/feature/extension-status-button
Add extension status button
This commit is contained in:
commit
8c748cebb4
2 changed files with 11 additions and 0 deletions
src/engine
|
@ -546,6 +546,16 @@ class Runtime extends EventEmitter {
|
|||
categoryInfo.menus.push(convertedMenu);
|
||||
}
|
||||
}
|
||||
|
||||
// Add extension status button
|
||||
if (extensionInfo.showStatusButton) {
|
||||
categoryInfo.blocks.push({
|
||||
info: {},
|
||||
json: null,
|
||||
xml: `<button type="status" extensionId="${categoryInfo.id}"></button>`
|
||||
});
|
||||
}
|
||||
|
||||
for (const blockInfo of extensionInfo.blocks) {
|
||||
if (blockInfo === '---') {
|
||||
categoryInfo.blocks.push(ConvertedSeparator);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue