aboutsummaryrefslogtreecommitdiff
path: root/src/displaywindow.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/displaywindow.c')
-rw-r--r--src/displaywindow.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/displaywindow.c b/src/displaywindow.c
index 259cb454..1d737748 100644
--- a/src/displaywindow.c
+++ b/src/displaywindow.c
@@ -586,9 +586,12 @@ static gint displaywindow_save(GtkWidget *widget, DisplayWindow *dw)
l = gtk_label_new("Save as type:");
gtk_box_pack_end(GTK_BOX(hbox), GTK_WIDGET(l), FALSE, FALSE, 5);
- gtk_combo_box_append_text(GTK_COMBO_BOX(cb), "PNG - 8 bit RGB");
- gtk_combo_box_append_text(GTK_COMBO_BOX(cb), "TIFF - Floating point");
- gtk_combo_box_append_text(GTK_COMBO_BOX(cb), "TIFF - 16 bit integer");
+ gtk_combo_box_append_text(GTK_COMBO_BOX(cb),
+ "PNG - 8 bit RGB (colour, binned)");
+ gtk_combo_box_append_text(GTK_COMBO_BOX(cb),
+ "TIFF - Floating point (mono, unbinned)");
+ gtk_combo_box_append_text(GTK_COMBO_BOX(cb),
+ "TIFF - 16 bit integer (mono, unbinned)");
gtk_combo_box_set_active(GTK_COMBO_BOX(cb), 0);
cd = malloc(sizeof(*cd));