refresh the list at copy too

This commit is contained in:
tibbi 2016-11-17 17:41:11 +01:00
parent 8a9adfc592
commit bebb7c8824

View file

@ -373,11 +373,11 @@ public class ItemsFragment extends android.support.v4.app.Fragment
public void copySucceeded(boolean deleted, boolean copiedAll) {
int msgId;
if (deleted) {
fillItems();
msgId = copiedAll ? R.string.moving_success : R.string.moving_success_partial;
} else {
msgId = copiedAll? R.string.copying_success : R.string.copying_success_partial;
}
fillItems();
Utils.Companion.showToast(getContext(), msgId);
}