Thumbnail Exif string: append exposure compensation (see issue 1150)

In order for this option to work on previously browsed thumbs the cache must be cleared.
(Please be sure to add to the build release notes)
This commit is contained in:
Michael Ezra
2011-12-09 21:17:37 -05:00
parent abe9de5201
commit 0becc749de
6 changed files with 21 additions and 6 deletions

View File

@@ -489,6 +489,9 @@ void Thumbnail::generateExifDateTimeStrings () {
exifString = Glib::ustring::compose ("f/%1 %2s %3%4 %5mm", Glib::ustring(rtengine::ImageData::apertureToString(cfs.fnumber)), Glib::ustring(rtengine::ImageData::shutterToString(cfs.shutter)), M("QINFO_ISO"), cfs.iso, cfs.focalLen);
if (options.fbShowExpComp && cfs.expcomp!="0.00" && cfs.expcomp!="") // don't show exposure compensation if it is 0.00EV;old cache iles do not have ExpComp, so value will not be displayed.
exifString = Glib::ustring::compose ("%1 %2EV", exifString, cfs.expcomp); // append exposure compensation to exifString
std::string dateFormat = options.dateFormat;
std::ostringstream ostr;
bool spec = false;