aboutsummaryrefslogtreecommitdiff
path: root/src/displaywindow.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2010-04-28 11:41:06 +0200
committerThomas White <taw@physics.org>2010-04-28 11:41:06 +0200
commite05ea5a21fc22aefe147d1ec519c4cfe536d6704 (patch)
tree565de60bdf19d9d4b6e2d70153ebf5c9ea4fcd05 /src/displaywindow.c
parent094d92718b28d35444292bd30306761a91a2f6c8 (diff)
hdfsee: Add floating point TIFF exporter
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));