mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-27 11:43:26 -03:00
Set label when selecting an address that already has a label. Fixes #1080.
This commit is contained in:
parent
6b8e7eefcc
commit
2d67195ed2
1 changed files with 5 additions and 3 deletions
|
@ -59,9 +59,11 @@ void SendCoinsEntry::on_payTo_textChanged(const QString &address)
|
|||
{
|
||||
if(!model)
|
||||
return;
|
||||
// Fill in label from address book, if no label is filled in yet
|
||||
if(ui->addAsLabel->text().isEmpty())
|
||||
ui->addAsLabel->setText(model->getAddressTableModel()->labelForAddress(address));}
|
||||
// Fill in label from address book, if address has an associated label
|
||||
QString associatedLabel = model->getAddressTableModel()->labelForAddress(address);
|
||||
if(!associatedLabel.isEmpty())
|
||||
ui->addAsLabel->setText(associatedLabel);
|
||||
}
|
||||
|
||||
void SendCoinsEntry::setModel(WalletModel *model)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue