mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 04:52:59 +01:00
Address book: show unlabeled addresses as (no label)
This commit is contained in:
parent
8b040f812a
commit
64f125f353
@ -114,7 +114,14 @@ QVariant AddressTableModel::data(const QModelIndex &index, int role) const
|
||||
switch(index.column())
|
||||
{
|
||||
case Label:
|
||||
return rec->label;
|
||||
if(rec->label.isEmpty())
|
||||
{
|
||||
return tr("(no label)");
|
||||
}
|
||||
else
|
||||
{
|
||||
return rec->label;
|
||||
}
|
||||
case Address:
|
||||
return rec->address;
|
||||
case IsDefaultAddress:
|
||||
|
Loading…
Reference in New Issue
Block a user