From 4a30d1fc386cdf60620344adf37dd3c634aceabc Mon Sep 17 00:00:00 2001 From: selsta Date: Wed, 15 Jan 2020 22:40:26 +0100 Subject: [PATCH] Account: update label after rename --- pages/Account.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/pages/Account.qml b/pages/Account.qml index b9ae66a4..d3c058b6 100644 --- a/pages/Account.qml +++ b/pages/Account.qml @@ -55,6 +55,7 @@ Rectangle { inputDialog.labelText = qsTr("Set the label of the selected account:") + translationManager.emptyString; inputDialog.onAcceptedCallback = function() { appWindow.currentWallet.setSubaddressLabel(_index, 0, inputDialog.inputText) + appWindow.currentWallet.subaddressAccount.refresh() } inputDialog.onRejectedCallback = null; inputDialog.open(appWindow.currentWallet.getSubaddressLabel(_index, 0))