diff --git a/publish/changeLog.md b/publish/changeLog.md index fab7a78c..a7644abb 100644 --- a/publish/changeLog.md +++ b/publish/changeLog.md @@ -14,6 +14,7 @@ - 修复Mac下窗口出现残留阴影的问题,这解决了Mac下桌面歌词出现残留阴影的远古bug,感谢 @zclorne (#1869, Thanks @zclorne) - 增大在线导入自定义源文件的大小限制,解决某些音源无法导入的问题(#1857) - 修复Mac下即使开启了托盘, `cmd+w` 仍会中断播放的问题(#1844) +- 修复播放详情页的歌词无法使用触碰拖动的问题(#1865) ### 变更 diff --git a/src/renderer/components/layout/PlayDetail/LyricPlayer.vue b/src/renderer/components/layout/PlayDetail/LyricPlayer.vue index 4a5dfc71..325d4e0a 100644 --- a/src/renderer/components/layout/PlayDetail/LyricPlayer.vue +++ b/src/renderer/components/layout/PlayDetail/LyricPlayer.vue @@ -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" >
@@ -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,