# HG changeset patch # User Nathan Walp # Date 1130611011 0 # Node ID 589f290eb8cdff1e14cd3909a178cc51ecc1b8c7 # Parent 4bdb7f142020041ff2fdb8e42e84cb8b6e065e5f [gaim-migrate @ 14186] draw the incredibly faint line in a non-stupid location committer: Tailor Script diff -r 4bdb7f142020 -r 589f290eb8cd src/gtkblist.c --- a/src/gtkblist.c Sat Oct 29 18:25:26 2005 +0000 +++ b/src/gtkblist.c Sat Oct 29 18:36:51 2005 +0000 @@ -2065,10 +2065,10 @@ gtk_paint_layout (style, gtkblist->tipwindow->window, GTK_STATE_NORMAL, FALSE, NULL, gtkblist->tipwindow, "tooltip", 38 + 4, current_height + 4, td->layout); + current_height += td->height; + if(l->next) - gtk_paint_hline(style, gtkblist->tipwindow->window, GTK_STATE_NORMAL, NULL, NULL, NULL, 4, max_width - 4, td->height); - - current_height += td->height; + gtk_paint_hline(style, gtkblist->tipwindow->window, GTK_STATE_NORMAL, NULL, NULL, NULL, 4, max_width - 4, current_height-2); } }