From 02708629ca24905c564b19a0fa3d1da921e7ed38 Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Mon, 2 Jul 2012 00:19:45 +0200 Subject: [PATCH] and another one just to show it off to muesli --- .../widgets/infowidgets/ArtistInfoScene.qml | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/src/libtomahawk/widgets/infowidgets/ArtistInfoScene.qml b/src/libtomahawk/widgets/infowidgets/ArtistInfoScene.qml index 644578ba2..126899630 100644 --- a/src/libtomahawk/widgets/infowidgets/ArtistInfoScene.qml +++ b/src/libtomahawk/widgets/infowidgets/ArtistInfoScene.qml @@ -21,8 +21,8 @@ Rectangle { // smooth: true // } Rectangle { - width: 100 - height: 100 + width: 80 + height: 80 color: "blue" } @@ -41,7 +41,8 @@ Rectangle { PathView { id: view - anchors.fill: parent + anchors { left: parent.left; top: parent.top; right: parent.right } + height: 200 preferredHighlightBegin: 0.5 preferredHighlightEnd: 0.5 focus: true @@ -58,4 +59,14 @@ Rectangle { 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 + } + }