mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-04-18 10:15:48 -04:00
fix: use toolboxitemid instead of id as the identifier attribute for extensions toolbox categories (#2)
This commit is contained in:
parent
12e2362ac6
commit
484d15b1be
1 changed files with 1 additions and 1 deletions
|
@ -1429,7 +1429,7 @@ class Runtime extends EventEmitter {
|
|||
|
||||
return {
|
||||
id: categoryInfo.id,
|
||||
xml: `<category name="${name}" id="${categoryInfo.id}" ${statusButtonXML} ${colorXML} ${menuIconXML}>${
|
||||
xml: `<category name="${name}" toolboxitemid="${categoryInfo.id}" ${statusButtonXML} ${colorXML} ${menuIconXML}>${
|
||||
paletteBlocks.map(block => block.xml).join('')}</category>`
|
||||
};
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue