-
Bug
-
Resolution: Fixed
-
P2: Important
-
6.3.1, 6.3.2
In certain condition, Tooltip does not appear.
It works fine in desktop environments.
In the following example code, the tooltip of the second button does not appear when
the button is hovered.
Button {
height: 50
width: 100
text: "Hello World!"
ToolTip.visible: down
ToolTip.text: "Hello World tooltip1!"
}
Button {
height: 50
width: 100
text: "Hello World!"
ToolTip.visible: hovered
ToolTip.text: "Hello World tooltip2!"
}
Sample code is attached.