# HG changeset patch # User Richard Laager # Date 1137653587 0 # Node ID 586f2b04e0c54079cc66be20ce990538ef02afe6 # Parent b25f48c9f6d722b5f021453bbb5882fb1a0d5c85 [gaim-migrate @ 15294] Fix the 'extra space in some tooltips' bug I've been seeing. committer: Tailor Script diff -r b25f48c9f6d7 -r 586f2b04e0c5 src/gtkblist.c --- 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);