Details
Description
Using getUserMedia() opens unwanted window's tab (for QtWebEngineProcess) in macOS Dock.
No such problem with Q 6.3.2.
Sample code:
import QtQuick import QtQuick.Window import QtWebEngine Window { width: 640 height: 480 visible: true WebEngineView { anchors.fill: parent url: 'https://webrtc.github.io/samples/src/content/getusermedia/gum/' onFeaturePermissionRequested: function (securityOrigin, feature) { grantFeaturePermission(securityOrigin, feature, true) } } }
Reproduced with Qt 6.4.3, Qt 6.5.0 and with the latest Qt 6.6.0 snapshot.
See standalone example WebEngineTest.zip
Steps to reproduce:
1. Build and run sample app
2. Press "Open camera" button
3. Observe macOS Dock
Attachments
Issue Links
- relates to
-
QTBUG-42955 QtWebEngineProcess appears on Dock
- Closed