Fixes for changing video resolution between 16:9 and 4:3
[harmattan/cameraplus] / qml / VideoResolutionSettings.qml
index 3a23d5c..d6323c5 100644 (file)
@@ -49,7 +49,10 @@ Column {
                 capitalize: true
                 text: qsTr("%1 %2").arg(resolutionName).arg(resolution)
                 checked: settings.videoResolution == resolutionName
-                onClicked: settings.videoResolution = resolutionName
+                onClicked: {
+                    settings.videoAspectRatio = resolutionAspectRatio
+                    settings.videoResolution = resolutionName
+                }
             }
         }
     }