More docs compliant alignment handling for subitems.
This commit is contained in:
parent
8ce90f2f0b
commit
88c26b9c01
|
@ -3385,10 +3385,11 @@ static BOOL LISTVIEW_DrawItem(LISTVIEW_INFO *infoPtr, HDC hdc, INT nItem, INT nS
|
||||||
{
|
{
|
||||||
COLUMN_INFO *lpColumnInfo = DPA_GetPtr(infoPtr->hdpaColumns, nSubItem);
|
COLUMN_INFO *lpColumnInfo = DPA_GetPtr(infoPtr->hdpaColumns, nSubItem);
|
||||||
if (lpColumnInfo)
|
if (lpColumnInfo)
|
||||||
|
switch (lpColumnInfo->fmt & LVCFMT_JUSTIFYMASK)
|
||||||
{
|
{
|
||||||
if (lpColumnInfo->fmt & LVCFMT_LEFT) uFormat |= DT_LEFT;
|
case LVCFMT_RIGHT: uFormat |= DT_RIGHT; break;
|
||||||
else if (lpColumnInfo->fmt & LVCFMT_RIGHT) uFormat |= DT_RIGHT;
|
case LVCFMT_CENTER: uFormat |= DT_CENTER; break;
|
||||||
else if (lpColumnInfo->fmt & LVCFMT_CENTER) uFormat |= DT_CENTER;
|
default: uFormat |= DT_LEFT;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!(uFormat & (DT_RIGHT | DT_CENTER))) rcLabel.left += 2;
|
if (!(uFormat & (DT_RIGHT | DT_CENTER))) rcLabel.left += 2;
|
||||||
|
|
Loading…
Reference in New Issue