From ee0c66762d409272e9fc9b92d7745e46a4b8aa46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malte=20J=C3=BCrgens?= Date: Sat, 30 Jul 2022 21:09:30 +0200 Subject: [PATCH] add `--enable-features=WebRTCPipeWireCapturer` Co-authored-by: edisionnano --- src/main.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index d666ba6..97ed6ad 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -30,6 +30,10 @@ int main(int argc, char *argv[]) { Virtmic::start(parser.value(virtmicOption)); } + qputenv("QTWEBENGINE_CHROMIUM_FLAGS", + "--enable-features=WebRTCPipeWireCapturer " + + qgetenv("QTWEBENGINE_CHROMIUM_FLAGS")); + MainWindow w; w.show();