修复播放详情页的歌词无法使用触碰拖动的问题(#1865)

pull/1989/head
lyswhut 2024-04-30 20:50:33 +08:00
parent 1b75cf822d
commit 793b5a679c
2 changed files with 4 additions and 1 deletions

View File

@ -14,6 +14,7 @@
- 修复Mac下窗口出现残留阴影的问题这解决了Mac下桌面歌词出现残留阴影的远古bug感谢 @zclorne #1869, Thanks @zclorne
- 增大在线导入自定义源文件的大小限制,解决某些音源无法导入的问题(#1857
- 修复Mac下即使开启了托盘 `cmd+w` 仍会中断播放的问题(#1844
- 修复播放详情页的歌词无法使用触碰拖动的问题(#1865
### 变更

View File

@ -5,7 +5,7 @@
v-show="!isShowLrcSelectContent"
ref="dom_lyric"
:class="['lyric', $style.lyric, { [$style.draging]: isMsDown }, { [$style.lrcActiveZoom]: isZoomActiveLrc }]" :style="lrcStyles"
@wheel="handleWheel" @mousedown="handleLyricMouseDown"
@wheel="handleWheel" @mousedown="handleLyricMouseDown" @touchstart="handleLyricTouchStart"
@contextmenu.stop="handleShowLyricMenu"
>
<div :class="['pre', $style.lyricSpace]" />
@ -77,6 +77,7 @@ export default {
isStopScroll,
timeStr,
handleLyricMouseDown,
handleLyricTouchStart,
handleWheel,
handleSkipPlay,
handleSkipMouseEnter,
@ -161,6 +162,7 @@ export default {
isMsDown,
timeStr,
handleLyricMouseDown,
handleLyricTouchStart,
handleWheel,
handleSkipPlay,
handleSkipMouseEnter,