am d503453c: am 80d8ace4: Merge change 26997 into eclair

Merge commit 'd503453ca093a1aac3781cdf6d86fd0700de6600'

* commit 'd503453ca093a1aac3781cdf6d86fd0700de6600':
  Fix issue 2128896 The thumbnail generated after picture capture with max zoom is overlapped with previous thumbnail.
This commit is contained in:
Ray Chen
2009-09-25 11:17:22 -07:00
committed by Android Git Automerger

View File

@@ -245,7 +245,7 @@ public class ThumbnailUtil {
}
Matrix matrix = new Matrix();
matrix.setScale(scale, scale);
Bitmap miniThumbnail = transform(matrix, source, width, height, false, recycle);
Bitmap miniThumbnail = transform(matrix, source, width, height, true, recycle);
return miniThumbnail;
}