fix multi column comboboxes not honoring width parameter

master
Zi Ree 2025-12-10 14:50:51 +01:00
parent 4aa7b3f5c0
commit 75965449fb
1 changed files with 1 additions and 0 deletions

View File

@ -3658,6 +3658,7 @@ LLScrollListItem* LLScrollListCtrl::addRow(LLScrollListItem *new_item, const LLS
if (cell_p.width.isProvided()) if (cell_p.width.isProvided())
{ {
new_column.width.pixel_width = cell_p.width; new_column.width.pixel_width = cell_p.width;
new_column.width.pixel_width.choose(); // <FS:Zi> fix multi column comboboxes not honoring width parameter
} }
addColumn(new_column); addColumn(new_column);
columnp = mColumns[column]; columnp = mColumns[column];