Skip to content

Commit da6bc7c

Browse files
committed
Update signal handlers in main.qml to have explicit parameters
1 parent 593b7e7 commit da6bc7c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

qml/pages/main.qml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ ApplicationWindow {
4747
}
4848
anchors.fill: parent
4949
focus: true
50-
Keys.onReleased: {
50+
Keys.onReleased: (event) => {
5151
if (event.key == Qt.Key_Back) {
5252
nodeModel.requestShutdown()
5353
event.accepted = true
@@ -86,7 +86,7 @@ ApplicationWindow {
8686
onAddWallet: {
8787
main.push(createWalletWizard, { "launchContext": CreateWalletWizard.Context.Main })
8888
}
89-
onSendTransaction: {
89+
onSendTransaction: (multipleRecipientsEnabled) => {
9090
if (multipleRecipientsEnabled) {
9191
main.push(multipleSendReviewPage)
9292
} else {

0 commit comments

Comments
 (0)