Some options in batch panel are not effective and not saved:

Save processing parameters with image
Uncompressed TIFF
This commit is contained in:
ffsup2 2010-07-07 20:59:50 +02:00
parent fe88ca68ca
commit 3eaecdb427

View File

@ -29,6 +29,7 @@ SaveFormatPanel::SaveFormatPanel () : listener (NULL) {
pngcompr->setAdjusterListener (this);
pngcompr->show ();
tiffuncompressed = Gtk::manage (new Gtk::CheckButton (M("SAVEDLG_TIFFUNCOMPRESSED")));
tiffuncompressed->signal_toggled().connect( sigc::mem_fun(*this,&SaveFormatPanel::formatChanged));
tiffuncompressed->show();
Gtk::HBox* hb1 = Gtk::manage (new Gtk::HBox ());
@ -51,6 +52,7 @@ SaveFormatPanel::SaveFormatPanel () : listener (NULL) {
pack_start (*formatopts, Gtk::PACK_SHRINK, 4);
savespp = Gtk::manage (new Gtk::CheckButton (M("SAVEDLG_SAVESPP")));
savespp->signal_toggled().connect( sigc::mem_fun(*this,&SaveFormatPanel::formatChanged));
pack_start (*savespp, Gtk::PACK_SHRINK, 4);
show_all ();