mirror of
https://github.com/dashpay/dash.git
synced 2024-12-28 13:32:47 +01:00
Only fill in label from address book, if no label is filled in yet, fixes #840
This commit is contained in:
parent
a3f3e54eee
commit
f9f75f320e
@ -59,8 +59,9 @@ void SendCoinsEntry::on_payTo_textChanged(const QString &address)
|
|||||||
{
|
{
|
||||||
if(!model)
|
if(!model)
|
||||||
return;
|
return;
|
||||||
ui->addAsLabel->setText(model->getAddressTableModel()->labelForAddress(address));
|
// 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));}
|
||||||
|
|
||||||
void SendCoinsEntry::setModel(WalletModel *model)
|
void SendCoinsEntry::setModel(WalletModel *model)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user