summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZi Ree <81702435+zi-ree@users.noreply.github.com>2025-12-10 20:37:24 +0100
committerGitHub <noreply@github.com>2025-12-10 21:37:24 +0200
commitdbbce566e7d66c907dde7bd6c4212b0954b9a5e1 (patch)
treee3f8964a6dd6b2263ef9b09f00a0ca4b102cd343
parentc0043a9951b90a4b67c23dae7fbb5399b18b045b (diff)
#5138 fix multi column comboboxes not honoring width parameter
-rw-r--r--indra/llui/llscrolllistctrl.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/llui/llscrolllistctrl.cpp b/indra/llui/llscrolllistctrl.cpp
index b459c67dad..558ce6a7fd 100644
--- a/indra/llui/llscrolllistctrl.cpp
+++ b/indra/llui/llscrolllistctrl.cpp
@@ -3185,6 +3185,7 @@ LLScrollListItem* LLScrollListCtrl::addRow(LLScrollListItem *new_item, const LLS
if (cell_p.width.isProvided())
{
new_column.width.pixel_width = cell_p.width;
+ new_column.width.pixel_width.choose();
}
addColumn(new_column);
columnp = mColumns[column];