# HG changeset patch # User Richard Laager # Date 1137789403 0 # Node ID 7bd4dbf26c00bde0728e9ccdf87ffab4434c0aa0 # Parent ec9b92104904a7ebbd8e27f62e877dce1a50a63d [gaim-migrate @ 15324] Scale the buddy icons in the non-full tooltips, as I mentioned on gaim-devel. committer: Tailor Script diff -r ec9b92104904 -r 7bd4dbf26c00 src/gtkblist.c --- a/src/gtkblist.c Fri Jan 20 20:35:18 2006 +0000 +++ b/src/gtkblist.c Fri Jan 20 20:36:43 2006 +0000 @@ -2083,7 +2083,7 @@ struct tooltip_data *td = g_new0(struct tooltip_data, 1); td->status_icon = gaim_gtk_blist_get_status_icon(node, GAIM_STATUS_ICON_LARGE); - td->avatar = gaim_gtk_blist_get_buddy_icon(node, FALSE, FALSE); + td->avatar = gaim_gtk_blist_get_buddy_icon(node, !full, FALSE); tooltip_text = gaim_get_tooltip_text(node, full); td->layout = gtk_widget_create_pango_layout(gtkblist->tipwindow, NULL); pango_layout_set_markup(td->layout, tooltip_text, -1);