Files
pay/desktop/widgets/CashFusionIcon.qml
T
tomFlowee 6e4724c555 Add cash-fusion icon in overview.
This allows people to associate the fusion logo with the type of
transactions.
2021-12-14 13:26:59 +01:00

25 lines
538 B
QML

import QtQuick 2.11
import QtQuick.Controls 2.11
Image {
id: fusedIcon
visible: fusedCount > 0
source: "qrc:/cashfusion.svg"
width: 24
height: 24
ToolTip {
delay: 600
text: qsTr("Coin has been fused for increased anonymity")
visible: mouseArea.inside
}
MouseArea {
id: mouseArea
property bool inside: false
hoverEnabled: true
anchors.fill: parent
anchors.margins: -5
onEntered: inside = true
onExited: inside = false
}
}