mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-24 15:18:07 +00:00
20 lines
346 B
QML
20 lines
346 B
QML
import QtQuick 2.7
|
|
|
|
// ===================================================================
|
|
|
|
MouseArea {
|
|
property alias text: tooltip.text
|
|
property var toolTipParent: this
|
|
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
|
|
onPressed: mouse.accepted = false
|
|
|
|
Tooltip {
|
|
id: tooltip
|
|
|
|
parent: toolTipParent
|
|
visible: containsMouse
|
|
}
|
|
}
|