Skip to content

Commit

Permalink
[GUI][Trivial] More changes to the Coin Control
Browse files Browse the repository at this point in the history
More changes in the Coin Control
  • Loading branch information
ambassador000 authored Dec 6, 2020
1 parent 3517d39 commit b69d61a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/qt/coincontroldialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -165,12 +165,12 @@ CoinControlDialog::CoinControlDialog(QWidget* parent, bool _forDelegation) : QDi
// Toggle lock state
connect(ui->pushButtonToggleLock, &QPushButton::clicked, this, &CoinControlDialog::buttonToggleLockClicked);

ui->treeWidget->setColumnWidth(COLUMN_CHECKBOX, 90);
ui->treeWidget->setColumnWidth(COLUMN_AMOUNT, 120);
ui->treeWidget->setColumnWidth(COLUMN_LABEL, 170);
ui->treeWidget->setColumnWidth(COLUMN_CHECKBOX, 100);
ui->treeWidget->setColumnWidth(COLUMN_AMOUNT, 110);
ui->treeWidget->setColumnWidth(COLUMN_LABEL, 160);
ui->treeWidget->setColumnWidth(COLUMN_ADDRESS, 310);
ui->treeWidget->setColumnWidth(COLUMN_DATE, 100);
ui->treeWidget->setColumnWidth(COLUMN_CONFIRMATIONS, 100);
ui->treeWidget->setColumnWidth(COLUMN_DATE, 145);
ui->treeWidget->setColumnWidth(COLUMN_CONFIRMATIONS, 65);
ui->treeWidget->setColumnHidden(COLUMN_TXHASH, true); // store transacton hash in this column, but dont show it
ui->treeWidget->setColumnHidden(COLUMN_VOUT_INDEX, true); // store vout index in this column, but dont show it

Expand Down

0 comments on commit b69d61a

Please sign in to comment.