Skip to content

Commit

Permalink
fix: 修复缩略图跳动问题 (#345)
Browse files Browse the repository at this point in the history
去除更新缩略图图片的时候更新位置,保证更新位置单一入口

Log: 修复部分已知问题
  • Loading branch information
pengfeixx authored Aug 2, 2023
1 parent 019c533 commit e5d2fad
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/widgets/platform/platform_toolbox_proxy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1360,7 +1360,6 @@ void Platform_ToolboxProxy::updateHoverPreview(const QUrl &url, int secs)
if (!pm.isNull()) {
QPoint point { showPoint.x(), showPoint.y() };
m_pPreviewer->updateWithPreview(pm, secs, m_pEngine->videoRotation());
m_pPreviewer->updateWithPreview(point);
}
}

Expand Down
1 change: 0 additions & 1 deletion src/widgets/toolbox_proxy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1484,7 +1484,6 @@ void ToolboxProxy::updateHoverPreview(const QUrl &url, int secs)
if (!pm.isNull()) {
QPoint point { showPoint.x(), showPoint.y() };
m_pPreviewer->updateWithPreview(pm, secs, m_pEngine->videoRotation());
m_pPreviewer->updateWithPreview(point);
}
}

Expand Down

0 comments on commit e5d2fad

Please sign in to comment.