From 016c87c8c9e571e52d28ca133c6619e8fea11499 Mon Sep 17 00:00:00 2001 From: Ansariel Date: Mon, 29 Jul 2013 22:37:05 +0200 Subject: [PATCH] Backed out 793fd0414d46 --- indra/llui/llscrolllistctrl.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/indra/llui/llscrolllistctrl.cpp b/indra/llui/llscrolllistctrl.cpp index eda333cf2c..f053f1df5c 100755 --- a/indra/llui/llscrolllistctrl.cpp +++ b/indra/llui/llscrolllistctrl.cpp @@ -693,15 +693,15 @@ bool LLScrollListCtrl::updateColumnWidths() new_width = (mItemListRect.getWidth() - mTotalStaticColumnWidth - mTotalColumnPadding) / mNumDynamicWidthColumns; } + // FIRE-8911/MAINT-2223: Fix for broken column resize + // This apparently doesn't work as it should, preventing + // a proper resize. Fall back to pre-3.4.3 behavior and + // always assume a changed width. if (column->getWidth() != new_width) { column->setWidth(new_width); - width_changed = true; + //width_changed = true; } - // FIRE-8911/MAINT-2223: Fix for broken column resize - // Apparently columns don't resize properly if we - // don't assume a width change. Fall back to pre-3.4.3 - // behavior and always assume a changed width. width_changed = true; // }