diff options
-rw-r--r-- | doc/man/align_detector.1.md | 5 | ||||
-rw-r--r-- | src/gui_align.c | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/doc/man/align_detector.1.md b/doc/man/align_detector.1.md index bf967e0c..b69ead6f 100644 --- a/doc/man/align_detector.1.md +++ b/doc/man/align_detector.1.md @@ -81,7 +81,10 @@ OPTIONS : detector. **--out-of-plane** -: Additionally refine out-of-plane panel positions and tilts of the detector. +: Additionally refine out-of-plane panel translations. + +**--out-of-plane-tilts** +: Additionally refine out-of-plane panel tilts. AUTHOR diff --git a/src/gui_align.c b/src/gui_align.c index b6c88379..5b731b41 100644 --- a/src/gui_align.c +++ b/src/gui_align.c @@ -247,7 +247,7 @@ gint align_sig(GtkWidget *widget, struct crystfelproject *proj) FALSE, FALSE, 4.0); gtk_widget_set_tooltip_text(win->level, "--level"); - win->out_of_plane = gtk_check_button_new_with_label("Include out-of-plane positions and tilts"); + win->out_of_plane = gtk_check_button_new_with_label("Include out-of-plane shifts"); gtk_box_pack_start(GTK_BOX(hbox), GTK_WIDGET(win->out_of_plane), FALSE, FALSE, 4.0); gtk_widget_set_tooltip_text(win->out_of_plane, "--out-of-plane"); |