[Simon Paillard] fix warning

This commit is contained in:
Yann Leboulanger 2006-07-18 21:14:07 +00:00
parent 9c886747c4
commit bc1949111b
1 changed files with 1 additions and 1 deletions

View File

@ -1592,7 +1592,7 @@ class ChatControl(ChatControlBase):
# It's why I set it transparent. # It's why I set it transparent.
image = self.xml.get_widget('avatar_image') image = self.xml.get_widget('avatar_image')
pixbuf = image.get_pixbuf() pixbuf = image.get_pixbuf()
pixbuf.fill(0xffffff00) # RGBA pixbuf.fill(0xffffff00L) # RGBA
image.queue_draw() image.queue_draw()
screen_w = gtk.gdk.screen_width() screen_w = gtk.gdk.screen_width()