Blob Blame History Raw
--- src/planner-gantt-view.c.orig	2006-05-16 17:33:21.000000000 +1000
+++ src/planner-gantt-view.c	2006-05-16 17:33:44.000000000 +1000
@@ -875,7 +875,7 @@
 {
 	GtkTreeView       *tv = GTK_TREE_VIEW (view->priv->tree);
 	GtkWidget         *gantt = view->priv->gantt;
-	gint               row_height;
+	gint               row_height, separator_height;
 	gint               header_height;
 	gint               height;
 	GList             *cols, *l;
@@ -886,6 +886,9 @@
 	cols = gtk_tree_view_get_columns (tv);
 	row_height = 0;
 	header_height = 0;
+	gtk_widget_style_get(GTK_WIDGET(tv),
+	                     "vertical-separator", &separator_height,
+	                     NULL);
 
 	for (l = cols; l; l = l->next) {
 		col = l->data;
@@ -899,6 +902,7 @@
 						    NULL,
 						    NULL,
 						    &height);
+		height += separator_height;
 		row_height = MAX (row_height, height);
 	}