We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a9adfc commit bebb7c8Copy full SHA for bebb7c8
app/src/main/java/com/simplemobiletools/filemanager/fragments/ItemsFragment.java
@@ -373,11 +373,11 @@ private void displayCopyDialog() {
373
public void copySucceeded(boolean deleted, boolean copiedAll) {
374
int msgId;
375
if (deleted) {
376
- fillItems();
377
msgId = copiedAll ? R.string.moving_success : R.string.moving_success_partial;
378
} else {
379
msgId = copiedAll? R.string.copying_success : R.string.copying_success_partial;
380
}
+ fillItems();
381
Utils.Companion.showToast(getContext(), msgId);
382
383
0 commit comments