summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan-Simon Moeller <jsmoeller@linuxfoundation.org>2019-03-11 20:33:26 +0000
committerGerrit Code Review <gerrit@automotivelinux.org>2019-03-11 20:33:26 +0000
commit3bb70f35d407595417ee86b24041b2d8bfca4d83 (patch)
tree655183097ad4445d3d8f3774d37d9605b352c9ca
parent6d8114395198fb91971911c4ef0963a9537dcd00 (diff)
parentffe767784bf30f8f69300ecb3a4d4571ba4d92d6 (diff)
Merge "mediaplayer: qml: switch to loop playlist by default"
-rw-r--r--app/MediaPlayer.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/MediaPlayer.qml b/app/MediaPlayer.qml
index ec7b4e0..089fcd0 100644
--- a/app/MediaPlayer.qml
+++ b/app/MediaPlayer.qml
@@ -139,7 +139,7 @@ ApplicationWindow {
visible: player.av_connected === false
offImage: './images/AGL_MediaPlayer_Loop_Inactive.svg'
onImage: './images/AGL_MediaPlayer_Loop_Active.svg'
- onClicked: { mediaplayer.loop(checked) }
+ onClicked: { mediaplayer.loop(checked ? "playlist" : "off") }
}
}
ColumnLayout {