diff --git a/kivyblocks/tree.py b/kivyblocks/tree.py index cd7f061..f24830d 100755 --- a/kivyblocks/tree.py +++ b/kivyblocks/tree.py @@ -165,7 +165,7 @@ class TreeNode(BoxLayout): if cf: self.content = HBox(size_hint_y=None, height=self.treeObj.rowHeight) - self.checkbox_w = CheckBox(active=self.data.get(cf, False) + self.checkbox_w = CheckBox(active=self.data.get(cf, False)) self.content.add_widget(self.checkbox_w) self.content.add_widget(x) self.checkbox_w.bind(active=self.on_checkbox_active)