Details
-
Bug
-
Resolution: Done
-
P2: Important
-
1.1.1
-
670e1aa7
Description
When the following QML is rendered, the viewfinder is visible, but the background is shown transparent instead of blue.
import Qt 4.7 import QtMultimediaKit 1.1 Rectangle { width: 360 height: 640 color: "blue" MouseArea { anchors.fill: parent onClicked: Qt.quit() } Camera { id: camera anchors.horizontalCenter: parent.horizontalCenter anchors.verticalCenter: parent.verticalCenter width: 250 height: 250 } }