changeset 11895:589f290eb8cd

[gaim-migrate @ 14186] draw the incredibly faint line in a non-stupid location committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Sat, 29 Oct 2005 18:36:51 +0000
parents 4bdb7f142020
children 8aa6462e563c
files src/gtkblist.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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);
 	}
 }