We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 593b7e7 commit da6bc7cCopy full SHA for da6bc7c
qml/pages/main.qml
@@ -47,7 +47,7 @@ ApplicationWindow {
47
}
48
anchors.fill: parent
49
focus: true
50
- Keys.onReleased: {
+ Keys.onReleased: (event) => {
51
if (event.key == Qt.Key_Back) {
52
nodeModel.requestShutdown()
53
event.accepted = true
@@ -86,7 +86,7 @@ ApplicationWindow {
86
onAddWallet: {
87
main.push(createWalletWizard, { "launchContext": CreateWalletWizard.Context.Main })
88
89
- onSendTransaction: {
+ onSendTransaction: (multipleRecipientsEnabled) => {
90
if (multipleRecipientsEnabled) {
91
main.push(multipleSendReviewPage)
92
} else {
0 commit comments