Use right sign to compare NON-equal double numbers
@ -150,7 +150,7 @@ void VideoSurface::onNewFrameAvailable(const std::shared_ptr<VideoFrame>& newFra
float newRatio = getSizeRatio(newSize);
if (qAbs(newRatio - ratio) < 1E-3 && isVisible()) {
if (qAbs(newRatio - ratio) > 1E-3 && isVisible()) {
ratio = newRatio;
recalulateBounds();
emit ratioChanged();