summaryrefslogtreecommitdiffstats
path: root/qml/AlbumPage.qml
diff options
context:
space:
mode:
Diffstat (limited to 'qml/AlbumPage.qml')
-rw-r--r--qml/AlbumPage.qml3
1 files changed, 3 insertions, 0 deletions
diff --git a/qml/AlbumPage.qml b/qml/AlbumPage.qml
index 44ed13e..56c947f 100644
--- a/qml/AlbumPage.qml
+++ b/qml/AlbumPage.qml
@@ -101,6 +101,7 @@ Page {
id: tracks
anchors.fill: parent
+ cacheBuffer: 3000
model: browse.tracks
header: AlbumHeader {
albumName: album ? album.name : ""
@@ -115,6 +116,8 @@ Page {
onCountChanged: {
delegate = browse.hasMultipleArtists ? compilationDelegate : albumDelegate
}
+
+ Component.onCompleted: positionViewAtBeginning()
}
ScrollDecorator { flickableItem: tracks }