Quick Cluster: Add horizontal rule in cluster membership table.
authorJohn Darrington <john@darrington.wattle.id.au>
Sat, 7 Nov 2015 10:06:20 +0000 (11:06 +0100)
committerJohn Darrington <john@darrington.wattle.id.au>
Sat, 7 Nov 2015 10:06:20 +0000 (11:06 +0100)
This is consistent with other tables, and I think it looks better.

src/language/stats/quick-cluster.c

index 52af3c394b23d7ae2559bb87617b06e44ef6bbc0..9a220eec632b02b2bcfe7ac06ab2b2ed2a6f4dc4 100644 (file)
@@ -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))
     {