diff options
author | Tasuku Suzuki <tasuku.suzuki@qt.io> | 2016-12-20 16:38:39 +0900 |
---|---|---|
committer | Tasuku Suzuki <tasuku.suzuki@qt.io> | 2016-12-20 16:38:39 +0900 |
commit | 9ce174038f3e96bb281b4e05cfa86fb815ba5528 (patch) | |
tree | 9ea90c5f2cb4e81ccfe8c574170e4342245006ce /app | |
parent | cd89041f77a5e3924764964b0820bf786ecc2b8e (diff) |
Resize coverart area to 1080x1080
Change-Id: If03cd924bbed08b2a81da0993b64377e47c8614c
Signed-off-by: Tasuku Suzuki <tasuku.suzuki@qt.io>
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 |