diff --git a/src/video/videosurface.cpp b/src/video/videosurface.cpp index ffe93ca7b..e95616e08 100644 --- a/src/video/videosurface.cpp +++ b/src/video/videosurface.cpp @@ -150,7 +150,7 @@ void VideoSurface::onNewFrameAvailable(const std::shared_ptr& newFra float newRatio = getSizeRatio(newSize); - if (qAbs(newRatio - ratio) < 1E-3 && isVisible()) { + if (qAbs(newRatio - ratio) > 1E-3 && isVisible()) { ratio = newRatio; recalulateBounds(); emit ratioChanged();