You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add new address type column to the addresstablemodel, use the getOutputType
function from the wallet interface to display the correct address type in the
new column content. Update the address book page to set the new column resize mode
and to display the new column only when the receiving tab is enabled
so it must be hidden on the sending tab.
Update AddressBookFilterProxyModel::filterAcceptsRow so the filter works also
on the new addressType column content. Also the searLineEdit greyed text
reflects that the new field/ column addressType will be included in the search/
filter by but only when the receiving tab is enabled.
Add the new column to the export feature.
ui->labelExplanation->setText(tr("These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins."));
96
103
ui->deleteAddress->setVisible(true);
97
104
ui->newAddress->setVisible(true);
105
+
ui->searchLineEdit->setPlaceholderText("Enter address or label to search");
98
106
break;
99
107
case ReceivingTab:
100
108
ui->labelExplanation->setText(tr("These are your Bitcoin addresses for receiving payments. Use the 'Create new receiving address' button in the receive tab to create new addresses.\nSigning is only possible with addresses of the type 'legacy'."));
101
109
ui->deleteAddress->setVisible(false);
102
110
ui->newAddress->setVisible(false);
111
+
ui->searchLineEdit->setPlaceholderText("Enter address, address type or label to search");
0 commit comments