From 0f24c79ce90a8ef9126df1baa63ce3701cc7836a Mon Sep 17 00:00:00 2001 From: Lirusaito Date: Tue, 23 Jul 2019 02:07:12 -0400 Subject: [PATCH] Restore storage of list maximum column width Fixes thin lists in comboboxes and flyout buttons --- indra/llui/llscrolllistctrl.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/indra/llui/llscrolllistctrl.cpp b/indra/llui/llscrolllistctrl.cpp index feff91dfb..b8a87412a 100644 --- a/indra/llui/llscrolllistctrl.cpp +++ b/indra/llui/llscrolllistctrl.cpp @@ -605,6 +605,7 @@ S32 LLScrollListCtrl::calcMaxContentWidth() } mColumnWidthsDirty = false; + mMaxContentWidth = max_item_width; return max_item_width; }