From 09e839dcd0ece246998756e2f8af449bb0ba6c12 Mon Sep 17 00:00:00 2001 From: Georg Reisinger <43533139+GeorgReisinger@users.noreply.github.com> Date: Tue, 19 Mar 2019 20:26:16 +0100 Subject: [PATCH] Edit User Fix --- .../smartshopper/smartshopper/activitys/EditUser.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/src/main/java/at/smartshopper/smartshopper/activitys/EditUser.java b/app/src/main/java/at/smartshopper/smartshopper/activitys/EditUser.java index e94bf63..715aa33 100644 --- a/app/src/main/java/at/smartshopper/smartshopper/activitys/EditUser.java +++ b/app/src/main/java/at/smartshopper/smartshopper/activitys/EditUser.java @@ -255,11 +255,11 @@ public class EditUser extends Activity { CropIntent.setDataAndType(uri, "image/*"); CropIntent.putExtra("crop", "true"); - CropIntent.putExtra("outputX", 180); - CropIntent.putExtra("outputY", 180); - CropIntent.putExtra("aspectX", 3); - CropIntent.putExtra("aspectY", 4); - CropIntent.putExtra("scaleUpIfNeeded", true); + CropIntent.putExtra("outputX", 350); + CropIntent.putExtra("outputY", 350); + CropIntent.putExtra("aspectX", 1); + CropIntent.putExtra("aspectY", 1); + CropIntent.putExtra("scaleUpIfNeeded", false); CropIntent.putExtra("return-data", true); startActivityForResult(CropIntent, 1);