diff options
author | Thomas White <taw@physics.org> | 2024-09-17 17:49:00 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2024-09-17 17:51:14 +0200 |
commit | 751e4330469ed453e923d7a2bec51234b0fbf9e1 (patch) | |
tree | d4903a71f1ec6b04ea9aa61c6eb05852401b2828 | |
parent | c4ea7a7e993fff91db75e27c82bc9b75378abcf7 (diff) |
Fix documentation references to out-of-plane tilts
This brings the GUI and manual pages back into alignment (so to speak)
with the changes in d00a9f8566bd1dd49d88cffe3580dfa8d4b27299.
align_detector --out-of-plane-tilts is not expected to be very stable,
and currently isn't available via the GUI.
-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"); |