fix some label layout issues

This commit is contained in:
Marco Martin 2014-05-16 14:20:21 +02:00
parent bca1ea4f1d
commit 6bd16ab166

View file

@ -90,12 +90,13 @@ KWin.Switcher {
RowLayout {
id: label
spacing: 4
property int maximumWidth: thumbnailListView.delegateWidth
Layout.maximumWidth: maximumWidth
anchors {
left: parent.left
right: parent.right
bottom: parent.bottom
leftMargin: hoverItem.margins.left
rightMargin: hoverItem.margins.right
bottomMargin: hoverItem.margins.bottom
}
QIconItem {
@ -110,6 +111,7 @@ KWin.Switcher {
PlasmaComponents.Label {
text: model.caption
elide: Text.ElideMiddle
Layout.fillWidth: true
Layout.maximumWidth: label.maximumWidth - iconItem.iconSize - label.spacing * 2
}