From 3eaecdb42795fd4725adadd572c527a24a08665d Mon Sep 17 00:00:00 2001 From: ffsup2 Date: Wed, 7 Jul 2010 20:59:50 +0200 Subject: [PATCH] Some options in batch panel are not effective and not saved: Save processing parameters with image Uncompressed TIFF --- rtgui/saveformatpanel.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rtgui/saveformatpanel.cc b/rtgui/saveformatpanel.cc index 9372be349..356fd2cb6 100644 --- a/rtgui/saveformatpanel.cc +++ b/rtgui/saveformatpanel.cc @@ -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 ();