mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-04-21 22:39:12 +00:00
Fix bug where multiselect triggers copy animation
Fix multiselect
This commit is contained in:
parent
7ce74d378f
commit
ad58960831
1 changed files with 2 additions and 1 deletions
|
@ -320,6 +320,8 @@ public class EntryAdapter extends RecyclerView.Adapter<EntryHolder> implements I
|
|||
boolean handled = false;
|
||||
|
||||
if (_selectedEntries.isEmpty()) {
|
||||
holder.animateCopyText();
|
||||
|
||||
if (_highlightEntry || _tapToReveal) {
|
||||
if (_focusedEntry == entry) {
|
||||
resetFocus();
|
||||
|
@ -342,7 +344,6 @@ public class EntryAdapter extends RecyclerView.Adapter<EntryHolder> implements I
|
|||
|
||||
if (!handled) {
|
||||
_view.onEntryClick(entry);
|
||||
holder.animateCopyText();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue