Merge pull request #1771

6c60b37 Fix Receive.qml:388: Error: Insufficient arguments (mmbyday)
This commit is contained in:
luigi1111 2018-12-04 13:32:15 -06:00
commit b27632e131
No known key found for this signature in database
GPG key ID: F4ACA0183641E010

View file

@ -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()