diff options
author | Thomas White <taw@physics.org> | 2021-02-16 16:51:53 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2021-02-16 16:51:53 +0100 |
commit | f91ffd75782687173ddf82e5b06b217bb3efe225 (patch) | |
tree | cfb52b96983ff64b40a692949e5794313ec98ed1 /src/crystfel_gui.c | |
parent | 62c340b78fa1cf1430a9d1ec217f221406c05488 (diff) |
GUI: Add ambigator options
Diffstat (limited to 'src/crystfel_gui.c')
-rw-r--r-- | src/crystfel_gui.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/crystfel_gui.c b/src/crystfel_gui.c index e4151b43..f32153aa 100644 --- a/src/crystfel_gui.c +++ b/src/crystfel_gui.c @@ -50,6 +50,7 @@ #include "gui_merge.h" #include "gui_fom.h" #include "gui_export.h" +#include "gui_ambi.h" #include "gui_project.h" #include "version.h" @@ -857,7 +858,7 @@ static void add_task_buttons(GtkWidget *vbox, struct crystfelproject *proj) add_button(vbox, "Determine unit cell", "applications-engineering", G_CALLBACK(cell_explorer_sig), proj); add_button(vbox, "Indexing ambiguity", "face-worried", - G_CALLBACK(NULL), proj); + G_CALLBACK(ambi_sig), proj); add_button(vbox, "Merge", "applications-science", G_CALLBACK(merge_sig), proj); add_button(vbox, "Figures of merit", "trophy-gold", |