Browse Source

Status bar changes when loading txs

pull/112/head
fekt 2 years ago
parent
commit
8f79558881
  1. 2
      src/rpc.cpp

2
src/rpc.cpp

@ -1034,6 +1034,7 @@ void RPC::refreshTransactions() {
if (conn == nullptr)
return noConnection();
ui->statusBar->showMessage("Loading transactions... ");
getTransactions([=] (QJsonValue reply) {
QList<TransactionItem> txdata;
@ -1062,6 +1063,7 @@ void RPC::refreshTransactions() {
// Update model data, which updates the table view
qDebug() << "refreshTransactions";
transactionsTableModel->addTData(txdata);
ui->statusBar->showMessage("Transactions loaded", 3 * 1000);
});
}

Loading…
Cancel
Save