From: Matt Ranostay Date: Thu, 6 Jul 2017 05:31:11 +0000 (-0700) Subject: qml: bluetooth: don't display icon unless connection X-Git-Tag: dab_3.99.3 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=2a75e69764b356cae1098f5d3290a4853bc0b6ff;p=apps%2Fmediaplayer.git qml: bluetooth: don't display icon unless connection Don't display the bluetooth ToggleButton unless there is a valid avrcp/a2dp connection. Bug-AGL: SPEC-730 Change-Id: Ifd68fd1380bef5a471aafb7687c0cefe62b68e6f Signed-off-by: Matt Ranostay (cherry picked from commit ba403bb3f5c8ce49b1db5ddc51717a2fe957bafd) --- diff --git a/app/MediaPlayer.qml b/app/MediaPlayer.qml index 8eb10f3..77538a6 100644 --- a/app/MediaPlayer.qml +++ b/app/MediaPlayer.qml @@ -225,7 +225,7 @@ ApplicationWindow { Item { Layout.fillWidth: true } ToggleButton { - enabled: bluetooth.connected + visible: bluetooth.connected checked: bluetooth.av_connected offImage: './images/AGL_MediaPlayer_Bluetooth_Inactive.svg' onImage: './images/AGL_MediaPlayer_Bluetooth_Active.svg'