diff options
| author | Alexander Blair <snipa@jagtech.io> | 2020-12-10 18:02:11 -0800 |
|---|---|---|
| committer | Alexander Blair <snipa@jagtech.io> | 2020-12-10 18:02:11 -0800 |
| commit | df771470c28c1efbb5402a755da0ab0dffaecd5f (patch) | |
| tree | b065b7b3f8054bdd5bee4dbf350a6c4a033173e3 /main.qml | |
| parent | e359c60f002eb9d9ec5d67a7e1cf21927093dda0 (diff) | |
| parent | 90e9968dcb2297e5b9374f68599d0ca8a3974fd6 (diff) | |
| download | monzero-gui-df771470c28c1efbb5402a755da0ab0dffaecd5f.tar.gz monzero-gui-df771470c28c1efbb5402a755da0ab0dffaecd5f.tar.xz monzero-gui-df771470c28c1efbb5402a755da0ab0dffaecd5f.zip | |
Merge pull request #3267
90e9968d main: get back "Sending transaction ..." splash (xiphon)
Diffstat (limited to 'main.qml')
| -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 |
