Skip to content

Commit

Permalink
Merge pull request #1771
Browse files Browse the repository at this point in the history
6c60b37 Fix Receive.qml:388: Error: Insufficient arguments (mmbyday)
  • Loading branch information
luigi1111 committed Dec 4, 2018
2 parents 9f6b433 + 6c60b37 commit b27632e
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.inputText = qsTr("(Untitled)")
inputDialog.onAcceptedCallback = function() { inputDialog.onAcceptedCallback = function() {
appWindow.currentWallet.subaddress.addRow(appWindow.currentWallet.currentSubaddressAccount, inputDialog.inputText) 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.onRejectedCallback = null;
inputDialog.open() inputDialog.open()
Expand Down

0 comments on commit b27632e

Please sign in to comment.