Fix T-addresses not showing up in dropdown (#169)
* Add upto 20 addresses to the taddr dropdown * View All Addresses dialog box * Add balances to view all addresses * Add export all keys * Add translations + copy address
This commit is contained in:
@@ -176,6 +176,14 @@ void Settings::saveRestore(QDialog* d) {
|
||||
});
|
||||
}
|
||||
|
||||
void Settings::saveRestoreTableHeader(QTableView* table, QDialog* d, QString tablename) {
|
||||
table->horizontalHeader()->restoreState(QSettings().value(tablename).toByteArray());
|
||||
|
||||
QObject::connect(d, &QDialog::finished, [=](auto) {
|
||||
QSettings().setValue(tablename, table->horizontalHeader()->saveState());
|
||||
});
|
||||
}
|
||||
|
||||
void Settings::openAddressInExplorer(QString address) {
|
||||
QString url;
|
||||
if (Settings::getInstance()->isTestnet()) {
|
||||
|
||||
Reference in New Issue
Block a user