aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libcrystfel/src/datatemplate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcrystfel/src/datatemplate.c b/libcrystfel/src/datatemplate.c
index 5e3dba49..b4a3cedf 100644
--- a/libcrystfel/src/datatemplate.c
+++ b/libcrystfel/src/datatemplate.c
@@ -995,7 +995,7 @@ static void show_group(const struct panel_group_template *gt, int level)
void data_template_show_hierarchy(const DataTemplate *dtempl)
{
STATUS("Hierarchy:\n");
- show_group(find_group(dtempl, "top"), 0);
+ show_group(find_group(dtempl, "all"), 0);
}
@@ -1976,7 +1976,7 @@ struct detgeom *create_detgeom(struct image *image,
}
- detgeom->top_group = walk_group(dtempl, find_group(dtempl, "top"), detgeom);
+ detgeom->top_group = walk_group(dtempl, find_group(dtempl, "all"), detgeom);
return detgeom;
}