bring tooltip to front

This commit is contained in:
Jaquee 2016-12-15 00:16:05 +01:00
parent 0e5329ab6c
commit a0f35aa776
No known key found for this signature in database
GPG key ID: 384E52B09F45DC39

View file

@ -185,7 +185,6 @@ Item {
height: 30
color: containsMouse ? "#F0EEEE" : "#DBDBDB"
//radius: index === repeater.count - 1 ? 5 : 0
Rectangle {
anchors.left: parent.left
anchors.top: parent.top
@ -218,6 +217,7 @@ Item {
pos.y -= tipItem.height - 30
tipItem.y = pos.y + appWindow.y
tipItem.visible = true
tipItem.raise()
}
}