From 3b1d462a08f68cb54dafe2cce8796cef58c26282 Mon Sep 17 00:00:00 2001 From: Mohammed Sameer Date: Thu, 27 Dec 2012 20:21:39 +0200 Subject: [PATCH] Standby should be visible when we have no current page --- qml/main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qml/main.qml b/qml/main.qml index 77154c3..7662b7b 100644 --- a/qml/main.qml +++ b/qml/main.qml @@ -405,6 +405,6 @@ PageStackWindow { Standby { policyLost: pipelineManager.state == "policyLost" - show: pageStack.currentPage.standbyVisible && pageStack.currentPage.status == PageStatus.Active && pipelineManager.showStandBy + show: !pageStack.currentPage || (pageStack.currentPage.standbyVisible && pageStack.currentPage.status == PageStatus.Active && pipelineManager.showStandBy) } } -- 2.25.1