From d623c45b7608b216bd8b822cd866de5569173e22 Mon Sep 17 00:00:00 2001 From: Alexandre Moreno Date: Sat, 24 Oct 2015 21:55:37 +0800 Subject: [PATCH] playback/player: qt: bind video item size to window Fixes #119 --- playback/player/qt/main.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playback/player/qt/main.qml b/playback/player/qt/main.qml index b3eb1886ee..c75a7b3d4a 100644 --- a/playback/player/qt/main.qml +++ b/playback/player/qt/main.qml @@ -60,8 +60,8 @@ ApplicationWindow { id: video objectName: "videoItem" anchors.centerIn: parent - width: 640 - height: 480 + width: parent.width + height: parent.height } FileDialog {