Enable qmlvideofx window to be resized, when large screen layout used

Change-Id: I3010b9fd5f68e922ff94edd4d08d8114c689c037
Reviewed-by: Jonas Rabbe <jonas.rabbe@nokia.com>
This commit is contained in:
Gareth Stockwell
2012-02-08 15:32:14 +00:00
committed by Qt by Nokia
parent c1ec175b24
commit 5c0629b571
5 changed files with 43 additions and 6 deletions

View File

@@ -60,7 +60,9 @@ Rectangle {
id: content
anchors {
top: parent.top
bottom: parent.bottom
left: parent.left
right: effectSelectionPanel.left
margins: 5
}
width: 600
@@ -99,11 +101,11 @@ Rectangle {
id: effectSelectionPanel
anchors {
top: parent.top
left: content.right
bottom: fileOpen.top
right: parent.right
margins: 5
}
height: 420
width: 300
itemHeight: 40
onEffectSourceChanged: {
content.effectSource = effectSource
@@ -114,12 +116,12 @@ Rectangle {
FileOpen {
id: fileOpen
anchors {
top: effectSelectionPanel.bottom
left: content.right
right: parent.right
bottom: parent.bottom
margins: 5
}
width: effectSelectionPanel.width
height: 165
buttonHeight: 32
topMargin: 10
}