From 27fbe3bf46c7c114e32a745b369e8f05902f75fc Mon Sep 17 00:00:00 2001 From: Thomas White Date: Fri, 4 Dec 2020 19:00:11 +0100 Subject: GUI: Set number of threads for merging --- src/gui_merge.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src') 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)); -- cgit v1.2.3