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

Commit 0539153e authored by Michael Jurka's avatar Michael Jurka
Browse files

Fix getBuiltInWallpaper method

parent f64247e4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -459,7 +459,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);