Fix reference error
This commit is contained in:
parent
b233c6e735
commit
30d1e6bdba
@ -81,9 +81,9 @@ Item {
|
||||
|
||||
PlasmaCore.IconItem {
|
||||
id: tooltipIcon
|
||||
width: toolTip.icon != "" ? theme.iconSizes.desktop : 0
|
||||
width: toolTip.icon != null ? theme.iconSizes.desktop : 0
|
||||
height: width
|
||||
source: toolTip ? toolTip.icon : ""
|
||||
source: toolTip.icon != null ? toolTip.icon : ""
|
||||
anchors {
|
||||
leftMargin: width != 0 ? _s : 0
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user