diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2016-12-21 12:18:34 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@automotivelinux.org> | 2016-12-21 12:18:34 +0000 |
commit | 343b678105e68faf8c89a15f1a77a6c1d9b78600 (patch) | |
tree | 47e82d728410aa6af268e2bee8c6a734c698fd94 /app | |
parent | 350e9067ca0ca9b086f2db848ebda1a8f4b122a7 (diff) | |
parent | 9ce174038f3e96bb281b4e05cfa86fb815ba5528 (diff) |
Merge "Resize coverart area to 1080x1080"
Diffstat (limited to 'app')
-rw-r--r-- | app/MediaPlayer.qml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/app/MediaPlayer.qml b/app/MediaPlayer.qml index fbb2c1f..570af0f 100644 --- a/app/MediaPlayer.qml +++ b/app/MediaPlayer.qml @@ -33,7 +33,6 @@ ApplicationWindow { return Qt.formatTime(new Date(value), 'mm:ss') } onPositionChanged: slider.value = player.position - Component.onCompleted: console.debug('player.supportedAudioRoles()', player.supportedAudioRoles()) } Playlist { @@ -51,7 +50,7 @@ ApplicationWindow { Item { Layout.fillWidth: true Layout.fillHeight: true - Layout.preferredHeight: 3 + Layout.preferredHeight: 1080 clip: true Image { anchors.left: parent.left @@ -178,7 +177,7 @@ ApplicationWindow { Item { Layout.fillWidth: true Layout.fillHeight: true - Layout.preferredHeight: 2 + Layout.preferredHeight: 407 ListView { anchors.fill: parent clip: true |