/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to avatarsbox.py

  • Committer: Curtis Hovey
  • Date: 2011-09-03 01:25:04 UTC
  • mto: This revision was merged to the branch mainline in revision 741.
  • Revision ID: sinzui.is@verizon.net-20110903012504-0jr4diz9033g5df2
Menu fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 
32
32
    def __init__(self, apparent_username):
33
33
        """ Constructor """
34
 
        super(Avatar, self).__init__()
 
34
        Gtk.HBox.__init__(self)
35
35
 
36
36
        self.apparent_username = apparent_username
37
37
        self.username, self.email = parse_username(apparent_username)
77
77
    """HBox showing an avatar."""
78
78
 
79
79
    def __init__(self, homogeneous=False, spacing=0):
80
 
        super(AvatarBox, self).__init__(
81
 
            homogeneous=homogeneous, spacing=spacing)
 
80
        Gtk.HBox.__init__(self, homogeneous=homogeneous, spacing=spacing)
82
81
        self.__avatars = {}
83
82
        self.avatar = None
84
83
        self.__displaying = None