Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a09c20a2 authored by Michael Jurka's avatar Michael Jurka Committed by Android Git Automerger
Browse files

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

* commit 'a457211a':
  Fix getBuiltInWallpaper method
parents 2399d6a4 a457211a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);