Comment 5 for bug 339257

Revision history for this message
Antoine Leclair (antoineleclair) wrote :

I'm not familiar with how to contribute to GNOME / Twitux, but I found how to fix it.

In the source code, in src/twitux-app.c, change line 1473 from:
 pixbuf = gdk_pixbuf_new_from_file (file, &error);
to:
 pixbuf = gdk_pixbuf_new_from_file_at_size (file, 48, 48, &error);

That way, the picture is left untouched in the cache folder ($HOME/.gnome2/twitux/avatar) but is scaled to fit the 48x48px size when loaded, keeping the original aspect ratio.

If I find time to do so, I'll try to submit a patch to the projet.