Hide tooltips when window not hovered anymore

This commit is contained in:
miruka
2019-12-06 07:07:40 -04:00
parent d893c4f534
commit 6c92f4cad1
2 changed files with 10 additions and 1 deletions

View File

@@ -11,6 +11,10 @@ ToolTip {
property alias label: label
property alias backgroundColor: background.color
readonly property bool hideNow: visible && ! window.hovered
onHideNowChanged: if (hideNow) toolTip.hide()
background: Rectangle {
id: background
@@ -46,7 +50,7 @@ ToolTip {
}
TapHandler {
onTapped: { toolTip.hide() }
onTapped: toolTip.hide()
}
HoverHandler {