Prevent copying when revealing code

pull/1483/head
Michael Schättgen 6 months ago
parent 0046e8827e
commit 8c1cc9a475

@ -556,11 +556,11 @@ public class EntryAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder>
if (_highlightEntry || _tempHighlightEntry || _tapToReveal) {
if (_focusedEntry == entry) {
resetFocus();
// Prevent copying when singletap is set and focus is reset
handled = _copyBehavior == CopyBehavior.SINGLETAP;
} else {
focusEntry(entry, _tapToRevealTime);
// Prevent copying when singletap is set and the entry is being revealed
handled = _copyBehavior == CopyBehavior.SINGLETAP && _tapToReveal;
}
}

Loading…
Cancel
Save