From 60b460abfc4a61084f5665507a16b995f824e6fa Mon Sep 17 00:00:00 2001 From: Mohammed Sameer Date: Sun, 9 Sep 2012 18:05:12 +0300 Subject: [PATCH] Show the capture button if the standby widget is not visible to avoid bad look when we minimize --- qml/VideoPage.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qml/VideoPage.qml b/qml/VideoPage.qml index c8687fe..d61d44d 100644 --- a/qml/VideoPage.qml +++ b/qml/VideoPage.qml @@ -29,7 +29,7 @@ CameraPage { } } - visible: (videoMode.recording || videoMode.canCapture) && !cameraMode.animationRunning && !previewAnimationRunning + visible: (videoMode.recording || videoMode.canCapture) && !cameraMode.animationRunning && !previewAnimationRunning && !standbyWidget.visible } Connections { -- 2.25.1