remove shift & tap enable multiselect (#9625)

Signed-off-by: 21pages <sunboeasy@gmail.com>
This commit is contained in:
21pages
2024-10-11 16:47:08 +08:00
committed by GitHub
parent cde7620eda
commit 29b01e9cef
2 changed files with 2 additions and 2 deletions

View File

@@ -62,7 +62,7 @@ class _PeerCardState extends State<_PeerCard>
final PeerTabModel peerTabModel = Provider.of(context);
final peer = super.widget.peer;
return GestureDetector(
onDoubleTap: peerTabModel.multiSelectionMode || peerTabModel.isShiftDown
onDoubleTap: peerTabModel.multiSelectionMode
? null
: () => widget.connect(context, peer.id),
onTap: () {