From a0f35aa776a2c1df9540135540ba0e18990f263e Mon Sep 17 00:00:00 2001 From: Jaquee Date: Thu, 15 Dec 2016 00:16:05 +0100 Subject: [PATCH] bring tooltip to front --- components/TableDropdown.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/TableDropdown.qml b/components/TableDropdown.qml index 7e5ea78e..de375ed8 100644 --- a/components/TableDropdown.qml +++ b/components/TableDropdown.qml @@ -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() } }