mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-13 09:47:50 -06:00
Prevent "sticky" tooltips
When quickly moving the mouse in and out, the timer would still be running, so the tooltip would become active once the mouse moved out of the area.
This commit is contained in:
parent
00f505374b
commit
d93f6f25d2
1 changed files with 5 additions and 1 deletions
|
@ -174,7 +174,11 @@ Item
|
|||
}
|
||||
|
||||
onEntered: intentTooltipTimer.start()
|
||||
onExited: base.hideTooltip()
|
||||
onExited:
|
||||
{
|
||||
base.hideTooltip()
|
||||
intentTooltipTimer.stop()
|
||||
}
|
||||
}
|
||||
|
||||
NoIntentIcon // This icon has hover priority over intentDescriptionHoverArea, so draw it above it.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue