Skip to content

Commit

Permalink
Fix Receive.qml:388: Error: Insufficient arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
mmbyday committed Dec 1, 2018
1 parent 45781ab commit 6c60b37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/Receive.qml
Expand Up @@ -385,7 +385,7 @@ Rectangle {
inputDialog.inputText = qsTr("(Untitled)")
inputDialog.onAcceptedCallback = function() {
appWindow.currentWallet.subaddress.addRow(appWindow.currentWallet.currentSubaddressAccount, inputDialog.inputText)
current_subaddress_table_index = appWindow.currentWallet.numSubaddresses() - 1
current_subaddress_table_index = appWindow.currentWallet.numSubaddresses(appWindow.currentWallet.currentSubaddressAccount) - 1
}
inputDialog.onRejectedCallback = null;
inputDialog.open()
Expand Down

0 comments on commit 6c60b37

Please sign in to comment.