Don't show delete action buttons in multi-select mode
This commit is contained in:
parent
6361ba35b3
commit
ebb0c45744
|
@ -273,8 +273,10 @@ public class CompletedDownloadsFragment extends Fragment implements
|
|||
|
||||
@Override
|
||||
public void afterBindViewHolder(EpisodeItemViewHolder holder, int pos) {
|
||||
DeleteActionButton actionButton = new DeleteActionButton(getItem(pos));
|
||||
actionButton.configure(holder.secondaryActionButton, holder.secondaryActionIcon, getActivity());
|
||||
if (!inActionMode()) {
|
||||
DeleteActionButton actionButton = new DeleteActionButton(getItem(pos));
|
||||
actionButton.configure(holder.secondaryActionButton, holder.secondaryActionIcon, getActivity());
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue