@@ -9,6 +9,7 @@ Item {
property int modelIndex
property alias asynchronous: image.asynchronous
+ property alias source: image.source
//color: Qt.rgba(Math.random(255), Math.random(255), Math.random(255), 1.0)
@@ -6,7 +6,13 @@ import PictureModel 1.0
import "../.."
ListView {
- delegate: ArtImage {}
+ anchors.fill: parent
+
+ delegate: ArtImage {
+ source: path
+ height: size.height
+ width: size.width
+ }
model: globalUtil.imageModel
PictureModel {