fix: don't display bogus empty tooltip with no text

This commit is contained in:
Lukáš Tinkl 2023-08-17 10:50:10 +02:00 committed by Lukáš Tinkl
parent a6d7ec2536
commit 4d770e6a7f
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ Item {
}
StatusToolTip {
id: tooltip
visible: hoverHandler.hovered
visible: hoverHandler.hovered && !!text
}
Component{