Last active
September 29, 2017 01:20
-
-
Save esokullu/72894d2322c5fe176c95bcf8fd7faf99 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GPage { | |
Text { | |
id: counter | |
// ... | |
MouseArea { | |
id: theCounter | |
anchors.fill: parent | |
onClicked: { | |
console.log("can't reach videoOutput1"); | |
} | |
} | |
} | |
body: GBody { | |
id: videoBody | |
anchors.fill: parent | |
Item { | |
id: recorder | |
anchors.fill: parent | |
VideoOutput { | |
id: videoOutput1 | |
source: cameraObject | |
fillMode: Image.PreserveAspectCrop | |
orientation: cameraObject.orientation | |
anchors.fill: recorder | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment