diff options
author | Thomas White <taw@physics.org> | 2021-06-17 17:18:09 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2021-06-17 17:18:09 +0200 |
commit | 75e2344a59f9b25354e51d754262476ff68b148e (patch) | |
tree | c5856fa01c0416d6b90e3a1ab9ed5095ab1a15cd /src | |
parent | 1f7db71c986a59dbf0ecc01d085640673226c008 (diff) |
GUI: Add a tooltip
Diffstat (limited to 'src')
-rw-r--r-- | src/gui_backend_slurm.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gui_backend_slurm.c b/src/gui_backend_slurm.c index 173ee65e..3a9e514d 100644 --- a/src/gui_backend_slurm.c +++ b/src/gui_backend_slurm.c @@ -760,6 +760,11 @@ static GtkWidget *make_indexing_parameters_widget(void *opts_priv) g_signal_connect(G_OBJECT(entry), "focus-out-event", G_CALLBACK(pathadd_focus_sig), opts); + gtk_widget_set_tooltip_text(hbox, "The search path includes /bin, " + "/usr/bin, the location of the CrystFEL GUI " + "executable, and anything you enter here. " + "You can include multiple locations " + "separated by colons."); return vbox; } |