fix: QR button acts as a toggle, and changed the font of HeaderButtons

This commit is contained in:
Richard Ramos 2020-12-01 14:37:22 -04:00 committed by Iuri Matias
parent ff5b972139
commit 3a6248319c
2 changed files with 3 additions and 2 deletions

View File

@ -94,7 +94,7 @@ ModalPopup {
height: 32
width: 32
anchors.top: parent.top
anchors.topMargin: Style.current.padding
anchors.topMargin: -4
anchors.right: parent.right
anchors.rightMargin: 32 + Style.current.smallPadding
radius: 8
@ -118,7 +118,7 @@ ModalPopup {
qrCodeButton.color = Style.current.grey
}
onClicked: {
showQR = true
showQR = !showQR
}
}
}

View File

@ -36,6 +36,7 @@ Rectangle {
anchors.leftMargin: walletMenu.btnMargin
anchors.verticalCenter: parent.verticalCenter
font.pixelSize: 13
font.family: Style.current.fontMedium.name
color: Style.current.blue
}