From 3855968eb0f1ac8214787efe8281902145d79e17 Mon Sep 17 00:00:00 2001 From: Matt Ranostay Date: Fri, 7 Jul 2017 18:11:56 -0700 Subject: bluetooth: fix some QML logic bugs Some conditions in the QML scripts were incorrect and wasn't hiding the playlist correctly when AVRCP/A2DP profiles were connected. Change-Id: Ia7abe250bb73da74ee93e69adeb91e224f6df744 Bug-AGL: SPEC-610 Signed-off-by: Matt Ranostay --- app/api/BluetoothManager.qml | 2 -- 1 file changed, 2 deletions(-) (limited to 'app/api/BluetoothManager.qml') diff --git a/app/api/BluetoothManager.qml b/app/api/BluetoothManager.qml index bb273a5..514a395 100644 --- a/app/api/BluetoothManager.qml +++ b/app/api/BluetoothManager.qml @@ -85,7 +85,6 @@ WebSocket { root.deviceAddress = address if (!address) { root.connected = false - playlistview.visible = true } } break @@ -173,7 +172,6 @@ WebSocket { function connect_profiles() { sendSocketMessage("connect", { "value": root.deviceAddress, "uuid": a2dp_uuid }) sendSocketMessage("connect", { "value": root.deviceAddress, "uuid": avrcp_uuid }) - root.av_connected = true } function disconnect_profiles() { -- cgit 1.2.3-korg