Update the item width upon a new column in the header control.

This commit is contained in:
Pierre Mageau 1999-10-23 23:57:42 +00:00 committed by Alexandre Julliard
parent 5f3d3a8d78
commit 50f8e4b171

View file

@ -2498,6 +2498,9 @@ static LRESULT LISTVIEW_DeleteColumn(HWND hwnd, INT nColumn)
{
bResult = LISTVIEW_RemoveColumn(infoPtr->hdpaItems, nColumn);
/* Need to reset the item width when deleting a column */
infoPtr->nItemWidth = LISTVIEW_GetItemWidth(hwnd);
/* reset scroll parameters */
if (uView == LVS_REPORT)
{
@ -4708,6 +4711,9 @@ static LRESULT LISTVIEW_InsertColumnA(HWND hwnd, INT nColumn,
nNewColumn = SendMessageA(infoPtr->hwndHeader, HDM_INSERTITEMA,
(WPARAM)nColumn, (LPARAM)&hdi);
/* Need to reset the item width when inserting a new column */
infoPtr->nItemWidth = LISTVIEW_GetItemWidth(hwnd);
LISTVIEW_UpdateScroll(hwnd);
InvalidateRect(hwnd, NULL, FALSE);
}