aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2020-12-04 19:00:11 +0100
committerThomas White <taw@physics.org>2020-12-04 19:00:11 +0100
commit27fbe3bf46c7c114e32a745b369e8f05902f75fc (patch)
treec7a4ed57f02f1b48091b26a0364a118f7ab5fb7b /src
parent12cfd861ad224b9c28f4fe4dd66468875da865e7 (diff)
GUI: Set number of threads for merging
Diffstat (limited to 'src')
-rw-r--r--src/gui_merge.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gui_merge.c b/src/gui_merge.c
index 4e7b776e..c5de063f 100644
--- a/src/gui_merge.c
+++ b/src/gui_merge.c
@@ -457,6 +457,9 @@ static GSList *partialator_command_line(const char *n_thread_str,
args = append_arg_str(args, "symmetry", params->symmetry);
+ args = g_slist_append(args, "-j");
+ args = g_slist_append(args, strdup(n_thread_str));
+
if ( params->twin_sym != NULL ) {
args = g_slist_append(args, "-w");
args = g_slist_append(args, strdup(params->twin_sym));