From cfae3b943f3c51cbef18b16a6bf3b2d65eea55f4 Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Thu, 6 Sep 2018 12:48:48 +0200 Subject: [PATCH] disable the Wifi setup if there are boxes already --- nymea-app/ui/connection/ConnectPage.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nymea-app/ui/connection/ConnectPage.qml b/nymea-app/ui/connection/ConnectPage.qml index f4e50791..68163e79 100644 --- a/nymea-app/ui/connection/ConnectPage.qml +++ b/nymea-app/ui/connection/ConnectPage.qml @@ -273,7 +273,7 @@ Page { Layout.fillWidth: true Layout.leftMargin: app.margins Layout.rightMargin: app.margins -// visible: discovery.discoveryModel.count === 0 + visible: discovery.discoveryModel.count === 0 text: qsTr("Start wireless setup") onClicked: pageStack.push(Qt.resolvedUrl("BluetoothDiscoveryPage.qml")) }