fix: use toolboxitemid instead of id as the identifier attribute for extensions toolbox categories ()

This commit is contained in:
Aaron Dodson 2024-04-30 15:49:07 -07:00 committed by GitHub
parent 12e2362ac6
commit 484d15b1be
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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>`
};
});