diff options
| author | xiphon <xiphon@protonmail.com> | 2020-12-10 23:59:12 +0000 |
|---|---|---|
| committer | xiphon <xiphon@protonmail.com> | 2020-12-10 23:59:12 +0000 |
| commit | 90e9968dcb2297e5b9374f68599d0ca8a3974fd6 (patch) | |
| tree | ea0ec4cce8751bb76e4af00d51b884914a5d0cbf | |
| parent | 96f9c11320ee3c4f1f1c35f3ac8e8f78340bd378 (diff) | |
| download | monzero-gui-90e9968dcb2297e5b9374f68599d0ca8a3974fd6.tar.gz monzero-gui-90e9968dcb2297e5b9374f68599d0ca8a3974fd6.tar.xz monzero-gui-90e9968dcb2297e5b9374f68599d0ca8a3974fd6.zip | |
main: get back "Sending transaction ..." splash
| -rw-r--r-- | main.qml | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -952,10 +952,12 @@ ApplicationWindow { // Store to file transaction.setFilename(path); } + appWindow.showProcessingSplash(qsTr("Sending transaction ...")); currentWallet.commitTransactionAsync(transaction); } function onTransactionCommitted(success, transaction, txid) { + hideProcessingSplash(); if (!success) { console.log("Error committing transaction: " + transaction.errorString); informationPopup.title = qsTr("Error") + translationManager.emptyString |
