1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-14 01:54:07 +02:00

and another one just to show it off to muesli

This commit is contained in:
Michael Zanetti
2012-07-02 00:19:45 +02:00
parent d894116e8e
commit 02708629ca

View File

@@ -21,8 +21,8 @@ Rectangle {
// smooth: true // smooth: true
// } // }
Rectangle { Rectangle {
width: 100 width: 80
height: 100 height: 80
color: "blue" color: "blue"
} }
@@ -41,7 +41,8 @@ Rectangle {
PathView { PathView {
id: view id: view
anchors.fill: parent anchors { left: parent.left; top: parent.top; right: parent.right }
height: 200
preferredHighlightBegin: 0.5 preferredHighlightBegin: 0.5
preferredHighlightEnd: 0.5 preferredHighlightEnd: 0.5
focus: true focus: true
@@ -58,4 +59,14 @@ Rectangle {
PathAttribute { name: "iconScale"; value: 0.5 } PathAttribute { name: "iconScale"; value: 0.5 }
} }
} }
GridView {
id: grid
anchors { left: parent.left; top: view.bottom; right: parent.right; bottom: parent.bottom }
model: albumsModel
delegate: appDelegate
}
} }