From b958f4b8ccc35741c7a9ef64c53bc04e7f84fb66 Mon Sep 17 00:00:00 2001 From: artdeell Date: Wed, 10 Jan 2024 20:31:02 +0300 Subject: [PATCH] Fix[code]: Post-merge conflict fix --- .../kdt/pojavlaunch/imgcropper/RegionDecoderCropBehaviour.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app_pojavlauncher/src/main/java/net/kdt/pojavlaunch/imgcropper/RegionDecoderCropBehaviour.java b/app_pojavlauncher/src/main/java/net/kdt/pojavlaunch/imgcropper/RegionDecoderCropBehaviour.java index 89361854a4..9b545713d0 100644 --- a/app_pojavlauncher/src/main/java/net/kdt/pojavlaunch/imgcropper/RegionDecoderCropBehaviour.java +++ b/app_pojavlauncher/src/main/java/net/kdt/pojavlaunch/imgcropper/RegionDecoderCropBehaviour.java @@ -74,7 +74,7 @@ private Bitmap decodeRegionBitmap(RectF targetDrawRect, RectF subsectionRect) { (int) subsectionRect.right, (int) subsectionRect.bottom ); - transformRect(subsectionRect, matrix); + MatrixUtils.transformRect(subsectionRect, matrix); targetDrawRect.set(subsectionRect); return mBitmapDecoder.decodeRegion(bitmapRegionRect, null); }