From e1989054c3b390646c34f74acfaaa385f9464b55 Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Sat, 31 Aug 2019 02:47:30 +0200 Subject: [PATCH] Add missing icon for the loopback bearer type --- nymea-app/ui/connection/ConnectPage.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nymea-app/ui/connection/ConnectPage.qml b/nymea-app/ui/connection/ConnectPage.qml index 60889473..5f66613d 100644 --- a/nymea-app/ui/connection/ConnectPage.qml +++ b/nymea-app/ui/connection/ConnectPage.qml @@ -154,6 +154,8 @@ Page { return "../images/bluetooth.svg"; case Connection.BearerTypeCloud: return "../images/cloud.svg" + case Connection.BearerTypeLoopback: + return "qrc:/styles/%1/logo.svg".arg(styleController.currentStyle) } return "" }