Auto distortion fix for portrait orientation on behalf of Guokai; see issue #582

This commit is contained in:
Michael Ezra
2011-03-14 23:10:02 -04:00
parent 67debe3a30
commit 5249a7cfad
4 changed files with 10 additions and 10 deletions

View File

@@ -110,12 +110,12 @@ void Thumbnail::_generateThumbnailImage () {
if ( initial_ && options.internalThumbIfUntouched)
{
quick = true;
tpp = rtengine::Thumbnail::loadQuickFromRaw (fname, ri, tw, th, 1);
tpp = rtengine::Thumbnail::loadQuickFromRaw (fname, ri, tw, th, 1, TRUE);
}
if ( tpp == 0 )
{
quick = false;
tpp = rtengine::Thumbnail::loadFromRaw (fname, ri, tw, th, 1);
tpp = rtengine::Thumbnail::loadFromRaw (fname, ri, tw, th, 1, TRUE);
}
if (tpp) {
cfs.format = FT_Raw;