浏览代码

Nodeset: Fix parsing the EventNotifier attribute of Views

Julius Pfrommer 6 年之前
父节点
当前提交
62e0c0ab40
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tools/nodeset_compiler/nodes.py

+ 1 - 1
tools/nodeset_compiler/nodes.py

@@ -619,5 +619,5 @@ class ViewNode(Node):
         for (at, av) in xmlelement.attributes.items():
             if at == "ContainsNoLoops":
                 self.containsNoLoops = "false" not in av.lower()
-            if at == "eventNotifier":
+            if at == "EventNotifier":
                 self.eventNotifier = "false" not in av.lower()