ListItemLayout {
id: listItemLayout
anchors {
bottom: parent.bottom
left: parent.left
right: parent.right
top: coverGrid.bottom
}
subtitle {
color: "#FFF"
elide: Text.ElideRight
fontSize: "x-small"
maximumLineCount: title.lineCount > 1 ? 1 : 2
opacity: 0.4
wrapMode: Text.WrapAtWordBoundaryOrAnywhere
}
title {
color: "#FFF"
elide: Text.ElideRight
fontSize: "small"
maximumLineCount: 2
wrapMode: Text.WrapAtWordBoundaryOrAnywhere
onLineCountChanged: {
console.debug("LineCount", title.lineCount, "height", title.height)
}
}
}