fix: don't display bogus empty tooltip with no text
This commit is contained in:
parent
a6d7ec2536
commit
4d770e6a7f
|
@ -35,7 +35,7 @@ Item {
|
||||||
}
|
}
|
||||||
StatusToolTip {
|
StatusToolTip {
|
||||||
id: tooltip
|
id: tooltip
|
||||||
visible: hoverHandler.hovered
|
visible: hoverHandler.hovered && !!text
|
||||||
}
|
}
|
||||||
|
|
||||||
Component{
|
Component{
|
||||||
|
|
Loading…
Reference in New Issue