little bugfix
This commit is contained in:
parent
d8164426cc
commit
a0921c0427
1 changed files with 2 additions and 2 deletions
|
@ -653,10 +653,10 @@ class roster_Window:
|
||||||
img = self.pixbufs[show]
|
img = self.pixbufs[show]
|
||||||
if img.get_storage_type() == gtk.IMAGE_ANIMATION:
|
if img.get_storage_type() == gtk.IMAGE_ANIMATION:
|
||||||
self.plugin.windows[account]['chats'][user.jid].\
|
self.plugin.windows[account]['chats'][user.jid].\
|
||||||
img = set_from_animation(img.get_animation())
|
img.set_from_animation(img.get_animation())
|
||||||
elif img.get_storage_type() == gtk.IMAGE_PIXBUF:
|
elif img.get_storage_type() == gtk.IMAGE_PIXBUF:
|
||||||
self.plugin.windows[account]['chats'][user.jid].\
|
self.plugin.windows[account]['chats'][user.jid].\
|
||||||
img = set_from_pixbuf(img.get_pixbuf())
|
img.set_from_pixbuf(img.get_pixbuf())
|
||||||
name = user.name
|
name = user.name
|
||||||
if user.resource != '':
|
if user.resource != '':
|
||||||
name += '/'+user.resource
|
name += '/'+user.resource
|
||||||
|
|
Loading…
Add table
Reference in a new issue