Skip to content

Commit 8ce91d9

Browse files
Fixed Issue commons-app#3428 so it actually works correctly now: Swapped text in dialog buttons because, according to Android Convention, they were opposite each other
1 parent 5c540b3 commit 8ce91d9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/src/main/java/fr/free/nrw/commons/upload/mediaDetails/UploadMediaDetailFragment.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -354,12 +354,12 @@ public void showDuplicatePicturePopup() {
354354
String.format(Locale.getDefault(),
355355
uploadTitleFormat,
356356
uploadItem.getFileName()),
357-
() -> {
358-
359-
},
360357
() -> {
361358
uploadItem.setImageQuality(ImageUtils.IMAGE_KEEP);
362359
onNextButtonClicked();
360+
},
361+
() -> {
362+
363363
});
364364
}
365365

0 commit comments

Comments
 (0)