add subdirectories recursively

This commit is contained in:
Anika Raemer 2018-10-19 20:22:25 +02:00
parent 717e131b75
commit 99a2d118c8
6 changed files with 70 additions and 40 deletions

View file

@ -5,12 +5,11 @@ Rectangle{
id: container
property var model
property bool isCircle : true
property alias imageSource: contentImage.source
width: 100
height: width
radius: isCircle ? width/2 : 0
radius: model.pIsCircleDelegate ? width/2 : 0
color: "blue"
Image{