Fix for scrolllist columns not resizing when header width is adjusted.

This commit is contained in:
Shyotl
2016-05-01 19:41:19 -05:00
parent 62ee456084
commit abb4b1ac7c
3 changed files with 12 additions and 9 deletions

View File

@@ -249,8 +249,8 @@ void LLScrollColumnHeader::handleReshape(const LLRect& new_rect, bool by_user)
// tell scroll list to layout columns again
// do immediate update to get proper feedback to resize handle
// which needs to know how far the resize actually went
mColumn->mParentCtrl->dirtyColumns(); //Must flag as dirty, else updateColumns will probably be a noop.
mColumn->mParentCtrl->updateColumns();
const bool force_update = true;
mColumn->mParentCtrl->updateColumns(force_update);
}
}