Behaviour of the history of the HL recovery tool has been normalized, French locale updated with the flat fiields strings, bug correction in the preference window (messages of the flat field and dark frame tools weren't handling special chars)

This commit is contained in:
Hombre
2011-01-20 01:58:23 +01:00
parent 127ae6eabd
commit 228294b0f8
6 changed files with 74 additions and 51 deletions

View File

@@ -230,8 +230,10 @@ void ToneCurve::adjusterChanged (Adjuster* a, double newval) {
listener->panelChanged (EvContrast, costr);
else if (a==saturation)
listener->panelChanged (EvSaturation, costr);
else if (a==hlcompr || a==hlcomprthresh)
listener->panelChanged (EvHLCompr, Glib::ustring::compose ("%1=%2\n%3=%4",M("TP_EXPOSURE_COMPRHIGHLIGHTS"),(int)hlcompr->getValue(),M("TP_EXPOSURE_COMPRHIGHLIGHTSTHRESHOLD"),(int)hlcomprthresh->getValue()));
else if (a==hlcompr)
listener->panelChanged (EvHLCompr, costr);
else if (a==hlcomprthresh)
listener->panelChanged (EvHLComprThreshold, costr);
else if (a==shcompr)
listener->panelChanged (EvSHCompr, costr);
}