mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-03-24 18:40:59 +03:00
fix(RightClickMenu): Fix target not being selected on long press (#1295)
This commit is contained in:
parent
672ab0863f
commit
d80cc35e94
1 changed files with 1 additions and 1 deletions
|
@ -326,7 +326,7 @@ function endPress() {
|
|||
|
||||
<v-list-item v-for="torrent in paginatedTorrents" :id="`torrent-${torrent.hash}`"
|
||||
:class="display.mobile ? 'mb-2' : 'mb-4'" class="pa-0" @contextmenu="onRightClick($event, torrent)"
|
||||
@touchcancel="endPress" @touchend="endPress" @touchmove="endPress" @touchstart="startPress"
|
||||
@touchcancel="endPress" @touchend="endPress" @touchmove="endPress" @touchstart="startPress($event, torrent)"
|
||||
@dblclick.prevent="goToInfo(torrent.hash)">
|
||||
<div class="d-flex align-center">
|
||||
<v-expand-x-transition>
|
||||
|
|
Loading…
Add table
Reference in a new issue