Fix wrapping in tooltip subtexts
REVIEW: 118376
This commit is contained in:
parent
78684c46cd
commit
8a59fe3643
@ -80,7 +80,7 @@ Row {
|
|||||||
}
|
}
|
||||||
PlasmaComponents.Label {
|
PlasmaComponents.Label {
|
||||||
id: tooltipSubtext
|
id: tooltipSubtext
|
||||||
width: parent.preferredTextWidth
|
width: Math.min(tooltipSubtext.implicitWidth, preferredTextWidth)
|
||||||
wrapMode: Text.WordWrap
|
wrapMode: Text.WordWrap
|
||||||
text: toolTip ? toolTip.subText : ""
|
text: toolTip ? toolTip.subText : ""
|
||||||
opacity: 0.5
|
opacity: 0.5
|
||||||
|
Loading…
Reference in New Issue
Block a user