summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorHolger Kaelberer <holger.k@elberer.de>2016-01-24 15:47:12 +0100
committerMatthew Waters <matthew@centricular.com>2016-02-01 13:55:05 +1100
commit0ae665e35c54c10ed6246eb1bbe01f64ed87dadc (patch)
tree528608d8688ab6df9211a824e43bca3de2fc725e /tests
parent0f865b316c50662df1bca8c0933396da0eb3bbb4 (diff)
downloadgstreamer-plugins-bad-0ae665e35c54c10ed6246eb1bbe01f64ed87dadc.tar.gz
tests: fix warning in qml example
https://bugzilla.gnome.org/show_bug.cgi?id=756082
Diffstat (limited to 'tests')
-rw-r--r--tests/examples/qt/qml/main.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/examples/qt/qml/main.qml b/tests/examples/qt/qml/main.qml
index 842e98f2e..ffd3cd165 100644
--- a/tests/examples/qt/qml/main.qml
+++ b/tests/examples/qt/qml/main.qml
@@ -33,8 +33,8 @@ ApplicationWindow {
anchors.bottom: video.bottom
anchors.bottomMargin: 15
anchors.horizontalCenter: parent.horizontalCenter
- width : childrenRect.width + 20
- height: childrenRect.height + 20
+ width : parent.width - 30
+ height: parent.height - 30
radius: 8
MouseArea {