Skip to content

Commit

Permalink
bubble: fix kvlang not listening to color change due to parent = None…
Browse files Browse the repository at this point in the history
… at creation
  • Loading branch information
tito committed Feb 20, 2012
1 parent 5f1c443 commit c0997c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kivy/uix/bubble.py
Expand Up @@ -162,7 +162,7 @@ def __init__(self, **kwargs):
self.background_texture = self._bk_img.texture
self._arrow_img = Image(source=self.arrow_image,
color=self.background_color)
self.content = content = BubbleContent()
self.content = content = BubbleContent(parent=self)
super(Bubble, self).__init__(**kwargs)
self.add_widget(content)
self._bk_img.bind(on_texture=self._on_texture)
Expand Down

0 comments on commit c0997c8

Please sign in to comment.