summaryrefslogtreecommitdiffstats
path: root/app/MediaPlayer.qml
diff options
context:
space:
mode:
authorMatt Ranostay <matt.ranostay@konsulko.com>2017-07-07 18:11:56 -0700
committerMatt Ranostay <matt.ranostay@konsulko.com>2017-07-07 18:11:56 -0700
commit3855968eb0f1ac8214787efe8281902145d79e17 (patch)
treedf1df05b5a5c3fa0f39c4a5f2ba016f8eec22f87 /app/MediaPlayer.qml
parentba403bb3f5c8ce49b1db5ddc51717a2fe957bafd (diff)
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 <matt.ranostay@konsulko.com>
Diffstat (limited to 'app/MediaPlayer.qml')
-rw-r--r--app/MediaPlayer.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/MediaPlayer.qml b/app/MediaPlayer.qml
index 482b30d..77538a6 100644
--- a/app/MediaPlayer.qml
+++ b/app/MediaPlayer.qml
@@ -78,7 +78,7 @@ ApplicationWindow {
height: sourceSize.height * width / sourceSize.width
fillMode: Image.PreserveAspectCrop
source: player.metaData.coverArtImage ? player.metaData.coverArtImage : ''
- visible: bluetooth.connected == false
+ visible: bluetooth.av_connected == false
}
Item {