DrawStatusText() must not process prefix characters.

This commit is contained in:
Eric Kohl 2004-12-06 16:15:38 +00:00 committed by Alexandre Julliard
parent e55b943802
commit d267f993f9
1 changed files with 1 additions and 1 deletions

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);
}
}