- Analyze
- View all for Memes
- Long press to select an image
- ... menu
- trash can icon
- Popup to confirm
Expected:
tells me number of files and size
Actual:
Are you sure you want to proceed?
%s Files, %s Size
Looks like this code is missing a call to R.string.delete_files_message.format(toDelete.size, size):
|
builder |
|
.setTitle(R.string.delete_files_title) |
|
.setMessage(R.string.delete_files_message) |
|
.setPositiveButton( |
Expected:
tells me number of files and size
Actual:
Looks like this code is missing a call to
R.string.delete_files_message.format(toDelete.size, size):AmazeFileUtilities/app/src/main/java/com/amaze/fileutilities/utilis/Utils.kt
Lines 463 to 466 in 272a284