mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-22 09:37:17 +00:00
Dont need to render certain MAKI nodes (#864)
This commit is contained in:
parent
ba338543b1
commit
13cb4e773f
1 changed files with 7 additions and 1 deletions
|
|
@ -454,7 +454,13 @@ const NODE_NO_EVENTS = new Set(["popupmenu"]);
|
|||
function XmlNode({ node }) {
|
||||
const attributes = node.attributes;
|
||||
const name = node.name;
|
||||
if (name == null || name === "groupdef") {
|
||||
if (
|
||||
name == null ||
|
||||
name === "groupdef" ||
|
||||
name === "elements" ||
|
||||
name === "gammaset" ||
|
||||
name === "scripts"
|
||||
) {
|
||||
// name is null is likely a comment
|
||||
return null;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue