From b5fc6841467b5ac36e84ce252840ebe6a5dce7f1 Mon Sep 17 00:00:00 2001 From: Mohammed Sameer Date: Sun, 18 Aug 2013 00:11:58 +0300 Subject: [PATCH] Set the video resolution when video aspect ratio gets changed This is not used for N9 but it might be used in the future --- qml/MainPage.qml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/qml/MainPage.qml b/qml/MainPage.qml index d45fac0..9cfa645 100644 --- a/qml/MainPage.qml +++ b/qml/MainPage.qml @@ -115,6 +115,12 @@ CameraPage { videoSettings.setVideoResolution() } } + + onVideoAspectRatioChanged: { + if (!root.deviceChangeInProgress) { + videoSettings.setVideoResolution() + } + } } PipelineManager { -- 2.25.1