diff --git a/app/src/main/java/eu/faircode/email/FragmentDialogEditImage.java b/app/src/main/java/eu/faircode/email/FragmentDialogEditImage.java
index 37b183d501..fecb52fcd7 100644
--- a/app/src/main/java/eu/faircode/email/FragmentDialogEditImage.java
+++ b/app/src/main/java/eu/faircode/email/FragmentDialogEditImage.java
@@ -119,13 +119,12 @@ public class FragmentDialogEditImage extends FragmentDialogBase {
int order = 1;
for (int size : resizeValues) {
- if (size > s)
- break;
order++;
ssb = new SpannableStringBuilderEx(getString(R.string.title_add_resize_pixels, size));
if (size == resize)
ssb.setSpan(new StyleSpan(Typeface.BOLD), 0, ssb.length(), 0);
popupMenu.getMenu().add(Menu.NONE, order, order, ssb)
+ .setEnabled(size < s)
.setIntent(new Intent().putExtra("size", size));
}
diff --git a/app/src/main/res/drawable/twotone_aspect_ratio_24.xml b/app/src/main/res/drawable/twotone_aspect_ratio_24.xml
deleted file mode 100644
index 376ccaac58..0000000000
--- a/app/src/main/res/drawable/twotone_aspect_ratio_24.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
diff --git a/app/src/main/res/layout/dialog_edit_image.xml b/app/src/main/res/layout/dialog_edit_image.xml
index fc3d22c077..42f0abd377 100644
--- a/app/src/main/res/layout/dialog_edit_image.xml
+++ b/app/src/main/res/layout/dialog_edit_image.xml
@@ -75,7 +75,7 @@
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toEndOf="@id/ibFlipVertically"
app:layout_constraintTop_toBottomOf="@id/civ"
- app:srcCompat="@drawable/twotone_aspect_ratio_24"
+ app:srcCompat="@drawable/twotone_open_in_full_24"
app:tint="?attr/colorAccent" />