Thu, 19 Jan 2006 06:53:07 +0000
[gaim-migrate @ 15294]
Fix the 'extra space in some tooltips' bug I've been seeing.
| src/gtkblist.c | file | annotate | diff | comparison | revisions |
--- a/src/gtkblist.c Thu Jan 19 06:52:16 2006 +0000 +++ b/src/gtkblist.c Thu Jan 19 06:53:07 2006 +0000 @@ -2270,7 +2270,7 @@ struct tooltip_data *td = create_tip_for_node(node, TRUE); gtkblist->tooltipdata = g_list_append(gtkblist->tooltipdata, td); w = td->width; - h = td->height + 8; + h = td->height; } else if(GAIM_BLIST_NODE_IS_CONTACT(node)) { GaimBlistNode *child; GaimBuddy *b = gaim_contact_get_priority_buddy((GaimContact *)node);