From 3795a5b9a31c69b6c5e908c6f0b96901864342ea Mon Sep 17 00:00:00 2001 From: Jos Wagenmakers Date: Mon, 18 Oct 2021 13:36:54 +0200 Subject: [PATCH] [Fix] Tuner play/pause switched --- qml/PlayerScreen.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qml/PlayerScreen.qml b/qml/PlayerScreen.qml index daa026d..447722b 100644 --- a/qml/PlayerScreen.qml +++ b/qml/PlayerScreen.qml @@ -69,7 +69,7 @@ Item { anchors.horizontalCenter: parent.horizontalCenter width: theme.iconSizeLarge height: width - source: tuner.playing ? (theme.icon_play_large ? theme.icon_play_large : "image://theme/icon-l-play?" + theme.secondaryColor) : (theme.icon_pause_large ? theme.icon_pause_large : "image://theme/icon-l-pause?" + theme.secondaryColor) + source: tuner.playing ? (theme.icon_pause_large ? theme.icon_pause_large : "image://theme/icon-l-pause?" + theme.secondaryColor) : (theme.icon_play_large ? theme.icon_play_large : "image://theme/icon-l-play?" + theme.secondaryColor) } Item {