From 9b68fd6f36c799ae43c86a6a1f4be936cdba0050 Mon Sep 17 00:00:00 2001 From: Raphael <68374617+raphaelscholle@users.noreply.github.com> Date: Mon, 6 Jan 2025 17:28:17 +0100 Subject: [PATCH] Update QSGVideoTextureItem.cpp --- app/videostreaming/avcodec/QSGVideoTextureItem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/videostreaming/avcodec/QSGVideoTextureItem.cpp b/app/videostreaming/avcodec/QSGVideoTextureItem.cpp index d15b44cec..69be25765 100644 --- a/app/videostreaming/avcodec/QSGVideoTextureItem.cpp +++ b/app/videostreaming/avcodec/QSGVideoTextureItem.cpp @@ -28,7 +28,7 @@ void QSGVideoTextureItem::handleWindowChanged(QQuickWindow *win) // Ensure we start with cleared to black. The squircle's blend mode relies on this. // We do not need that when rendering a texture, which is what we actually want (squircle is just the example where I started with, // since I had to start somehow ;) - //win->setColor(Qt::black); + win->setColor(Qt::black); } }