16 Mar
2020
16 Mar
'20
10:07 a.m.
On 13-03-2020 17:20, Matteo Bruni wrote:
On Tue, Mar 10, 2020 at 11:22 AM Sven Baars <sbaars(a)codeweavers.com> wrote:
@@ -617,6 +625,9 @@ static INT WINAPI ID3DXFontImpl_DrawTextW(ID3DXFont *iface, ID3DXSprite *sprite, if (format & DT_CALCRECT) format |= DT_NOCLIP;
+ if (format & DT_SINGLELINE) + format &= ~DT_WORDBREAK; +
I don't think we have a test for this specific case at the moment, it would be nice to have one.
Hi Matteo, I added some more tests for this in my updated patch series. Sven