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;