Only fill in label from address book, if no label is filled in yet, fixes #840
authorWladimir J. van der Laan <laanwj@gmail.com>
Fri, 17 Feb 2012 17:25:14 +0000 (18:25 +0100)
committerLuke Dashjr <luke-jr+git@utopios.org>
Mon, 27 Feb 2012 17:45:25 +0000 (12:45 -0500)
src/qt/sendcoinsentry.cpp

index ab5460f..d98400c 100644 (file)
@@ -59,8 +59,9 @@ void SendCoinsEntry::on_payTo_textChanged(const QString &address)
 {
     if(!model)
         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)
 {