Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIX:When opening or autoloading wallets there should be clear messages about rescanning in progress and wallets' names. #786

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/qt/receivecoinsdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ void ReceiveCoinsDialog::setModel(WalletModel *_model)
{
this->model = _model;

setWindowTitle(tr("Request payments - %1").arg(model->getWalletName()));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

CI lint is failing due to unnecessary white-spaces in the files (you can run the script lint-whitespace.py locally or even all linters)

Suggested change
setWindowTitle(tr("Request payments - %1").arg(model->getWalletName()));
setWindowTitle(tr("Request payments - %1").arg(model->getWalletName()));



if(_model && _model->getOptionsModel())
{
_model->getRecentRequestsTableModel()->sort(RecentRequestsTableModel::Date, Qt::DescendingOrder);
Expand Down
4 changes: 3 additions & 1 deletion src/qt/sendcoinsdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,9 @@ void SendCoinsDialog::setClientModel(ClientModel *_clientModel)
void SendCoinsDialog::setModel(WalletModel *_model)
{
this->model = _model;


setWindowTitle(tr("Send Coins - %1").arg(model->getWalletName()));

if(_model && _model->getOptionsModel())
{
for(int i = 0; i < ui->entries->count(); ++i)
Expand Down