diff --git a/src/bin/inspect.c b/src/bin/inspect.c index ddbe14a..0e6dc1d 100644 --- a/src/bin/inspect.c +++ b/src/bin/inspect.c @@ -443,7 +443,7 @@ _gui_unit_display(Exactness_Unit *unit1, Exactness_Unit *unit2, int position) itr2 = unit2 ? unit2->events : NULL; if (itr1) - elm_genlist_item_append(gl, _grp_itc, "Scenario", NULL, ELM_GENLIST_ITEM_GROUP, NULL, NULL); + elm_genlist_item_append(gl, _grp_itc, unit2 ? "Scenario comparison" : "Scenario", NULL, ELM_GENLIST_ITEM_GROUP, NULL, NULL); while (itr1 || itr2) { Variant_st *v1 = itr1 ? eina_list_data_get(itr1) : NULL; @@ -467,7 +467,7 @@ _gui_unit_display(Exactness_Unit *unit1, Exactness_Unit *unit2, int position) itr2 = unit2 ? unit2->imgs : NULL; if (itr1) - elm_genlist_item_append(gl, _grp_itc, "Images", NULL, ELM_GENLIST_ITEM_GROUP, NULL, NULL); + elm_genlist_item_append(gl, _grp_itc, unit2 ? "Images comparison" : "Images", NULL, ELM_GENLIST_ITEM_GROUP, NULL, NULL); while (itr1 || itr2) { Exactness_Image *img1 = itr1 ? eina_list_data_get(itr1) : NULL;