Merge pull request #1732

01054f2 left-panel: implement wallet 'Logout' shortcut button (xiphon)
This commit is contained in:
luigi1111
2018-11-16 11:58:11 -06:00
3 changed files with 29 additions and 0 deletions

View File

@@ -144,6 +144,34 @@ Rectangle {
font.bold: true
color: "#ff9323"
}
Rectangle {
height: (logoutImage.height + 8) * scaleRatio
width: (logoutImage.width + 8) * scaleRatio
color: "transparent"
anchors.right: parent.right
anchors.rightMargin: 8
anchors.top: parent.top
anchors.topMargin: 25
Image {
id: logoutImage
anchors.verticalCenter: parent.verticalCenter
anchors.horizontalCenter: parent.horizontalCenter
height: 16 * scaleRatio
width: 13 * scaleRatio
source: "../images/logout.png"
}
MouseArea{
anchors.fill: parent
hoverEnabled: true
cursorShape: Qt.PointingHandCursor
onClicked: {
appWindow.showWizard();
}
}
}
}
Item {