Browse Source

[Qt] Fill in label from address book also for URIs

0.10
Cozz Lovan 11 years ago
parent
commit
0fde3bbf07
  1. 6
      src/qt/sendcoinsentry.cpp

6
src/qt/sendcoinsentry.cpp

@ -195,8 +195,10 @@ void SendCoinsEntry::setValue(const SendCoinsRecipient &value) @@ -195,8 +195,10 @@ void SendCoinsEntry::setValue(const SendCoinsRecipient &value)
ui->messageTextLabel->setVisible(!recipient.message.isEmpty());
ui->messageLabel->setVisible(!recipient.message.isEmpty());
ui->payTo->setText(recipient.address);
ui->addAsLabel->setText(recipient.label);
ui->addAsLabel->clear();
ui->payTo->setText(recipient.address); // this may set a label from addressbook
if (!recipient.label.isEmpty()) // if a label had been set from the addressbook, dont overwrite with an empty label
ui->addAsLabel->setText(recipient.label);
ui->payAmount->setValue(recipient.amount);
}
}

Loading…
Cancel
Save