aboutsummaryrefslogtreecommitdiff
path: root/src/gui_backend_local.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2021-10-20 14:07:05 +0200
committerThomas White <taw@physics.org>2021-10-20 14:23:49 +0200
commit0b46b5003af6c6c45da1ff2455680f612f27fa47 (patch)
tree8eeb76c3812e5225d0f0631fdb052487fff245be /src/gui_backend_local.c
parent8dce4d5d192788bdcfb7f39bc7cedda6e0b209ca (diff)
GUI: Track the indexing result from which each merge result came
Diffstat (limited to 'src/gui_backend_local.c')
-rw-r--r--src/gui_backend_local.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui_backend_local.c b/src/gui_backend_local.c
index 06d95689..56bbdb82 100644
--- a/src/gui_backend_local.c
+++ b/src/gui_backend_local.c
@@ -501,8 +501,8 @@ static void *run_merging(const char *job_title,
hkl1 = relative_to_cwd(workdir, "crystfel.hkl1");
hkl2 = relative_to_cwd(workdir, "crystfel.hkl2");
- add_merge_result(proj, job_title, output_rel_filename,
- hkl1, hkl2);
+ add_merge_result(proj, job_title, input->name,
+ output_rel_filename, hkl1, hkl2);
g_free(hkl1);
g_free(hkl2);
}