comctl32/listview: Handle LVCFMT_FIXED_WIDTH flag.

This commit is contained in:
Nikolay Sivov 2009-09-06 10:54:53 +04:00 committed by Alexandre Julliard
parent a4c22a142c
commit ecda6af39f
1 changed files with 3 additions and 0 deletions

View File

@ -7336,6 +7336,9 @@ static void column_fill_hditem(const LISTVIEW_INFO *infoPtr, HDITEMW *lphdi, INT
lphdi->fmt |= HDF_IMAGE;
lphdi->iImage = I_IMAGECALLBACK;
}
if (lpColumn->fmt & LVCFMT_FIXED_WIDTH)
lphdi->fmt |= HDF_FIXEDWIDTH;
}
if (lpColumn->mask & LVCF_WIDTH)