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: 4.99.1~11 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=ba403bb3f5c8ce49b1db5ddc51717a2fe957bafd;hp=0f9e9e41961a896ad2dc2bb05fcd7f5d9ee9e26b;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 --- diff --git a/app/MediaPlayer.qml b/app/MediaPlayer.qml index d37e097..482b30d 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'