[COMCTL32] status: Use DrawThemeText when drawing text with themes. CORE-13855

This commit is contained in:
Giannis Adamopoulos 2018-01-10 15:52:42 +02:00
parent 92732f1bcf
commit 789881672a

View file

@ -196,7 +196,10 @@ STATUSBAR_DrawPart (const STATUS_INFO *infoPtr, HDC hdc, const STATUSWINDOWPART
SendMessageW (infoPtr->Notify, WM_DRAWITEM, dis.CtlID, (LPARAM)&dis);
} else {
r.left += x;
DrawStatusTextW (hdc, &r, part->text, SBT_NOBORDERS);
if (!theme)
DrawStatusTextW (hdc, &r, part->text, SBT_NOBORDERS);
else
DrawThemeText(theme, hdc, SP_PANE, 0, part->text, -1, DT_VCENTER|DT_SINGLELINE|DT_NOPREFIX, 0, &r);
}
}