Skip to content

Commit

Permalink
[Trivial][GUI] coin control: Fixed column size in list-mode
Browse files Browse the repository at this point in the history
Github-Pull: #2098
Rebased-From: 373dd28
  • Loading branch information
random-zebra authored and Fuzzbawls committed Dec 27, 2020
1 parent f3662f8 commit f17aabc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qt/coincontroldialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -801,7 +801,7 @@ void CoinControlDialog::updateView()
// save COLUMN_CHECKBOX width for tree-mode
colCheckBoxWidth_treeMode = std::max(110, ui->treeWidget->columnWidth(COLUMN_CHECKBOX));
// minimize COLUMN_CHECKBOX width in list-mode (need to display only the check box)
ui->treeWidget->resizeColumnToContents(COLUMN_CHECKBOX);
ui->treeWidget->setColumnWidth(COLUMN_CHECKBOX, 70);
}

// sort view
Expand Down

0 comments on commit f17aabc

Please sign in to comment.