comctl32: listview: Recompute header size after an insertion of a column.

This commit is contained in:
Mikołaj Zalewski 2006-07-03 22:09:19 +02:00 committed by Alexandre Julliard
parent 2e3e74ebd0
commit 2248217157
1 changed files with 1 additions and 0 deletions

View File

@ -6593,6 +6593,7 @@ static INT LISTVIEW_InsertColumnT(LISTVIEW_INFO *infoPtr, INT nColumn,
/* make space for the new column */
LISTVIEW_ScrollColumns(infoPtr, nNewColumn + 1, lpColumnInfo->rcHeader.right - lpColumnInfo->rcHeader.left);
LISTVIEW_UpdateItemSize(infoPtr);
return nNewColumn;