Mercurial > pidgin.yaz
changeset 11894:4bdb7f142020
[gaim-migrate @ 14185]
draw an incredibly faint line between buddies in tooltips
committer: Tailor Script <tailor@pidgin.im>
author | Nathan Walp <nwalp@pidgin.im> |
---|---|
date | Sat, 29 Oct 2005 18:25:26 +0000 |
parents | 85c0aece7be9 |
children | 589f290eb8cd |
files | src/gtkblist.c |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/gtkblist.c Sat Oct 29 18:02:34 2005 +0000 +++ b/src/gtkblist.c Sat Oct 29 18:25:26 2005 +0000 @@ -2065,6 +2065,9 @@ gtk_paint_layout (style, gtkblist->tipwindow->window, GTK_STATE_NORMAL, FALSE, NULL, gtkblist->tipwindow, "tooltip", 38 + 4, current_height + 4, td->layout); + 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; } }