From: John Darrington Date: Sat, 7 Nov 2015 10:06:20 +0000 (+0100) Subject: Quick Cluster: Add horizontal rule in cluster membership table. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=072d1bbf4e543c4c462c2a81e4ec5102afdf82dd;p=pspp Quick Cluster: Add horizontal rule in cluster membership table. This is consistent with other tables, and I think it looks better. --- diff --git a/src/language/stats/quick-cluster.c b/src/language/stats/quick-cluster.c index 52af3c394b..9a220eec63 100644 --- a/src/language/stats/quick-cluster.c +++ b/src/language/stats/quick-cluster.c @@ -473,6 +473,8 @@ quick_cluster_show_membership (struct Kmeans *kmeans, const struct casereader *r tab_text (t, 0, 0, TAB_CENTER, _("Case Number")); tab_text (t, 1, 0, TAB_CENTER, _("Cluster")); tab_box (t, TAL_2, TAL_2, TAL_0, TAL_1, 0, 0, nc - 1, nr - 1); + tab_hline (t, TAL_1, 0, nc - 1, 1); + for (i = 0; (c = casereader_read (cs)) != NULL; i++, case_unref (c)) {