From 0ae665e35c54c10ed6246eb1bbe01f64ed87dadc Mon Sep 17 00:00:00 2001 From: Holger Kaelberer Date: Sun, 24 Jan 2016 15:47:12 +0100 Subject: [PATCH] tests: fix warning in qml example https://bugzilla.gnome.org/show_bug.cgi?id=756082 --- tests/examples/qt/qml/main.qml | 4 ++-- 1 file 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 { -- 2.34.1