mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-04-22 23:09:13 +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;
|
boolean handled = false;
|
||||||
|
|
||||||
if (_selectedEntries.isEmpty()) {
|
if (_selectedEntries.isEmpty()) {
|
||||||
|
holder.animateCopyText();
|
||||||
|
|
||||||
if (_highlightEntry || _tapToReveal) {
|
if (_highlightEntry || _tapToReveal) {
|
||||||
if (_focusedEntry == entry) {
|
if (_focusedEntry == entry) {
|
||||||
resetFocus();
|
resetFocus();
|
||||||
|
@ -342,7 +344,6 @@ public class EntryAdapter extends RecyclerView.Adapter<EntryHolder> implements I
|
||||||
|
|
||||||
if (!handled) {
|
if (!handled) {
|
||||||
_view.onEntryClick(entry);
|
_view.onEntryClick(entry);
|
||||||
holder.animateCopyText();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue