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."));
110
117
ui->deleteAddress->setVisible(true);
111
118
ui->newAddress->setVisible(true);
119
+
ui->searchLineEdit->setPlaceholderText("Enter address or label to search");
112
120
break;
113
121
case ReceivingTab:
114
122
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'."));
115
123
ui->deleteAddress->setVisible(false);
116
124
ui->newAddress->setVisible(false);
125
+
ui->searchLineEdit->setPlaceholderText("Enter address, address type or label to search");
0 commit comments