diff --git a/linphone-desktop/src/components/camera/Camera.cpp b/linphone-desktop/src/components/camera/Camera.cpp index 546f752b4..b83c884bd 100644 --- a/linphone-desktop/src/components/camera/Camera.cpp +++ b/linphone-desktop/src/components/camera/Camera.cpp @@ -77,6 +77,9 @@ Camera::Camera (QQuickItem *parent) : QQuickFramebufferObject(parent) { setAcceptHoverEvents(true); setAcceptedMouseButtons(Qt::LeftButton | Qt::RightButton); + // The fbo content must be y-mirrored because the ms rendering is y-inverted. + setMirrorVertically(true); + m_context_info = new ContextInfo(); }