From 072d1bbf4e543c4c462c2a81e4ec5102afdf82dd Mon Sep 17 00:00:00 2001 From: John Darrington Date: Sat, 7 Nov 2015 11:06:20 +0100 Subject: [PATCH] Quick Cluster: Add horizontal rule in cluster membership table. This is consistent with other tables, and I think it looks better. --- src/language/stats/quick-cluster.c | 2 ++ 1 file changed, 2 insertions(+) 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)) { -- 2.30.2