moment/harmonyqml/ToolTipLabel.qml
2019-03-21 23:28:14 -04:00

17 lines
333 B
QML

import QtQuick 2.7
import QtQuick.Controls 2.0
PlainLabel {
id: text
ToolTip {
delay: Qt.styleHints.mousePressAndHoldInterval
visible: text ? toolTipZone.containsMouse : false
text: user_id
}
MouseArea {
id: toolTipZone
anchors.fill: parent
hoverEnabled: true
}
}