aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2020-10-06 15:42:13 +0200
committerThomas White <taw@physics.org>2020-10-06 15:51:57 +0200
commit62183aacf906f4aff771295aa378cff039dd50ff (patch)
tree4ec60226b447e2d832b94c4a04fe4df467978db9 /src
parent5edd5c1f3ced6063d4b0ecfd4e07a0c9bee29fa4 (diff)
Move asdf out of set of indexers used by default
Sadly, it has the same fatal flaw as TakeTwo: taking forever on a minority of patterns.
Diffstat (limited to 'src')
-rw-r--r--src/crystfelindexingopts.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crystfelindexingopts.c b/src/crystfelindexingopts.c
index f88e4be2..520956d1 100644
--- a/src/crystfelindexingopts.c
+++ b/src/crystfelindexingopts.c
@@ -182,7 +182,7 @@ static GtkWidget *make_indexing_methods(CrystFELIndexingOpts *io)
add_method(io->indm_store, "xgandalf", "XGANDALF", TRUE, TRUE, FALSE);
add_method(io->indm_store, "pinkIndexer", "PinkIndexer", FALSE, TRUE, FALSE);
add_method(io->indm_store, "taketwo", "TakeTwo", FALSE, TRUE, FALSE);
- add_method(io->indm_store, "asdf", "ASDF", TRUE, TRUE, FALSE);
+ add_method(io->indm_store, "asdf", "ASDF", FALSE, FALSE, FALSE);
add_method(io->indm_store, "felix", "Felix", FALSE, TRUE, FALSE);
treeview = gtk_tree_view_new_with_model(GTK_TREE_MODEL(io->indm_store));