From c65802c1c362f3fb12b52df006eaeefafd216daa Mon Sep 17 00:00:00 2001 From: lyswhut Date: Tue, 10 May 2022 09:36:12 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=95=BF=E5=BA=A6=E5=A4=A7?= =?UTF-8?q?=E4=BA=8E=E4=B8=80=E8=A1=8C=E7=9A=84=E6=AD=8C=E8=AF=8D=E5=9C=A8?= =?UTF-8?q?=E4=BD=BF=E7=94=A8=E6=AD=8C=E8=AF=8D=E8=B0=83=E6=95=B4=E6=92=AD?= =?UTF-8?q?=E6=94=BE=E8=BF=9B=E5=BA=A6=E6=97=B6=E7=9A=84=E6=97=B6=E9=97=B4?= =?UTF-8?q?=E4=B8=8D=E5=87=86=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- publish/changeLog.md | 1 + src/renderer/components/core/PlayDetail/LyricPlayer.vue | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/publish/changeLog.md b/publish/changeLog.md index 526dbc1b..3542e6ec 100644 --- a/publish/changeLog.md +++ b/publish/changeLog.md @@ -8,3 +8,4 @@ - 修复某些情况下歌曲播放出错时不会自动切歌的问题 - 修复关闭“显示切换动画”设置后,在应用启动时该设置没有被应用的问题 - 修复原始歌词存在偏移时,歌词偏移设置的重置未按预期工作的问题 +- 修复长度大于一行的歌词在使用歌词调整播放进度时的时间不准问题 diff --git a/src/renderer/components/core/PlayDetail/LyricPlayer.vue b/src/renderer/components/core/PlayDetail/LyricPlayer.vue index 2233576c..40f6c33b 100644 --- a/src/renderer/components/core/PlayDetail/LyricPlayer.vue +++ b/src/renderer/components/core/PlayDetail/LyricPlayer.vue @@ -183,7 +183,7 @@ export default { :global { .lrc-content { line-height: 1.2; - padding: calc(var(--playDetail-lrc-font-size, 16px) / 2) 0; + padding: calc(var(--playDetail-lrc-font-size, 16px) / 2) 1px; overflow-wrap: break-word; color: @color-player-detail-lyric; transition: @transition-theme;