6e4724c555
This allows people to associate the fusion logo with the type of transactions.
25 lines
538 B
QML
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
|
|
}
|
|
}
|