Skip to content

Commit bebb7c8

Browse files
committed
refresh the list at copy too
1 parent 8a9adfc commit bebb7c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/java/com/simplemobiletools/filemanager/fragments/ItemsFragment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,11 +373,11 @@ private void displayCopyDialog() {
373373
public void copySucceeded(boolean deleted, boolean copiedAll) {
374374
int msgId;
375375
if (deleted) {
376-
fillItems();
377376
msgId = copiedAll ? R.string.moving_success : R.string.moving_success_partial;
378377
} else {
379378
msgId = copiedAll? R.string.copying_success : R.string.copying_success_partial;
380379
}
380+
fillItems();
381381
Utils.Companion.showToast(getContext(), msgId);
382382
}
383383

0 commit comments

Comments
 (0)