From a0921c042760b67d2a2a80b591344cfabd6def40 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Tue, 29 Jun 2004 20:47:04 +0000 Subject: [PATCH] little bugfix --- plugins/gtkgui/gtkgui.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/gtkgui/gtkgui.py b/plugins/gtkgui/gtkgui.py index 7b5b2e081..593737ddb 100644 --- a/plugins/gtkgui/gtkgui.py +++ b/plugins/gtkgui/gtkgui.py @@ -653,10 +653,10 @@ class roster_Window: img = self.pixbufs[show] if img.get_storage_type() == gtk.IMAGE_ANIMATION: 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: self.plugin.windows[account]['chats'][user.jid].\ - img = set_from_pixbuf(img.get_pixbuf()) + img.set_from_pixbuf(img.get_pixbuf()) name = user.name if user.resource != '': name += '/'+user.resource