# HG changeset patch # User Sean Egan # Date 1170447017 0 # Node ID d4f62777010780625af2849528f28c3e40957d71 # Parent 29e8e230d1b600a8bc75a1ea6f5fb1d82c40726f Remove separator again, and use the 16px prpl icon instead of the 22 diff -r 29e8e230d1b6 -r d4f627770107 pidgin/gtkblist.c --- a/pidgin/gtkblist.c Fri Feb 02 06:09:03 2007 +0000 +++ b/pidgin/gtkblist.c Fri Feb 02 20:10:17 2007 +0000 @@ -2199,7 +2199,7 @@ #define TOOLTIP_BORDER 12 #define SMALL_SPACE 6 #define LARGE_SPACE 12 -#define PRPL_SIZE 22 +#define PRPL_SIZE 16 struct tooltip_data { PangoLayout *layout; PangoLayout *name_layout; @@ -2230,7 +2230,7 @@ td->status_icon = gaim_gtk_blist_get_status_icon(node, GAIM_STATUS_ICON_LARGE); td->avatar = gaim_gtk_blist_get_buddy_icon(node, !full, FALSE, TRUE); - td->prpl_icon = gaim_gtk_create_prpl_icon(account, PIDGIN_PRPL_ICON_MEDIUM); + td->prpl_icon = gaim_gtk_create_prpl_icon(account, PIDGIN_PRPL_ICON_SMALL); tooltip_text = gaim_get_tooltip_text(node, full); td->layout = gtk_widget_create_pango_layout(gtkblist->tipwindow, NULL); td->name_layout = gtk_widget_create_pango_layout(gtkblist->tipwindow, NULL); @@ -2344,9 +2344,6 @@ TOOLTIP_BORDER + STATUS_SIZE + SMALL_SPACE, current_height + td->name_height, td->layout); current_height += MAX(td->name_height + td->height, td->avatar_height) + TOOLTIP_BORDER; - if(l->next) - gtk_paint_hline(style, gtkblist->tipwindow->window, GTK_STATE_NORMAL, - NULL, NULL, NULL, 4, max_width - 4, current_height-6); } }