aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/gui_index.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gui_index.c b/src/gui_index.c
index f88cfa35..7d91a450 100644
--- a/src/gui_index.c
+++ b/src/gui_index.c
@@ -109,8 +109,10 @@ static int run_indexing_all(struct crystfelproject *proj,
be->indexing_opts_priv);
if ( job_priv != NULL ) {
- add_running_task(proj, "Indexing all frames",
- be, job_priv);
+ char name[256];
+ snprintf(name, 255, "Indexing all frames (%s)",
+ job_title);
+ add_running_task(proj, name, be, job_priv);
return 0;
} else {
return 1;