Skip to content

Commit f17aabc

Browse files
random-zebraFuzzbawls
authored andcommitted
[Trivial][GUI] coin control: Fixed column size in list-mode
Github-Pull: #2098 Rebased-From: 373dd28
1 parent f3662f8 commit f17aabc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qt/coincontroldialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -801,7 +801,7 @@ void CoinControlDialog::updateView()
801801
// save COLUMN_CHECKBOX width for tree-mode
802802
colCheckBoxWidth_treeMode = std::max(110, ui->treeWidget->columnWidth(COLUMN_CHECKBOX));
803803
// minimize COLUMN_CHECKBOX width in list-mode (need to display only the check box)
804-
ui->treeWidget->resizeColumnToContents(COLUMN_CHECKBOX);
804+
ui->treeWidget->setColumnWidth(COLUMN_CHECKBOX, 70);
805805
}
806806

807807
// sort view

0 commit comments

Comments
 (0)