DrawStatusText() must not process prefix characters.

svn path=/trunk/; revision=11463
This commit is contained in:
Eric Kohl 2004-10-26 13:15:06 +00:00
parent 2e1e51f902
commit 9accaf0d0e

View file

@ -482,7 +482,7 @@ void WINAPI DrawStatusTextW (HDC hdc, LPRECT lprc, LPCWSTR text, UINT style)
r.left += 3;
if (style & SBT_RTLREADING)
FIXME("Unsupported RTL style!\n");
DrawTextW (hdc, text, -1, &r, align|DT_VCENTER|DT_SINGLELINE);
DrawTextW (hdc, text, -1, &r, align|DT_VCENTER|DT_SINGLELINE|DT_NOPREFIX);
SetBkMode(hdc, oldbkmode);
}
}