am a09c20a2: am a457211a: Merge "Fix getBuiltInWallpaper method" into klp-dev

* commit 'a09c20a23038c1d77ae3d511da18a377572aed0c':
  Fix getBuiltInWallpaper method
This commit is contained in:
Michael Jurka
2013-10-14 20:57:22 -07:00
committed by Android Git Automerger

View File

@@ -461,7 +461,7 @@ public class WallpaperManager {
float right = left + outWidth;
float top = (inHeight - outHeight) * verticalAlignment;
float bottom = top + outHeight;
cropRectF = new RectF(bottom, left, right, top);
cropRectF = new RectF(left, top, right, bottom);
}
Rect roundedTrueCrop = new Rect();
cropRectF.roundOut(roundedTrueCrop);