Zaddr fix (#173)

* Use isZAddress instead of hardcoded "z"

* Make last col in Tx table resizable
This commit is contained in:
Arjun
2019-07-28 11:23:30 -07:00
committed by adityapk00
parent 9b6995aa5e
commit b792679a93
2 changed files with 2 additions and 2 deletions

View File

@@ -181,7 +181,7 @@ void MainWindow::restoreSavedStates() {
// Explicitly set the tx table resize headers, since some previous values may have made them
// non-expandable.
ui->transactionsTable->horizontalHeader()->setSectionResizeMode(3, QHeaderView::Interactive);
ui->transactionsTable->horizontalHeader()->setSectionResizeMode(4, QHeaderView::Stretch);
ui->transactionsTable->horizontalHeader()->setSectionResizeMode(4, QHeaderView::Interactive);
}
void MainWindow::doClose() {