http://bugs.winehq.org/show_bug.cgi?id=59218 Louis Lenders <xerox.xerox2000x@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Component|-unknown |dwrite Keywords| |download Ever confirmed|0 |1 URL| |https://www.mth-software.de | |/Down/setup_mth_vp.exe Status|UNCONFIRMED |NEW CC| |xerox.xerox2000x@gmail.com --- Comment #5 from Louis Lenders <xerox.xerox2000x@gmail.com> --- Hi, @OP: It seems AFAICT this can be downloaded just as a demo from https://www.mth-software.de/Down/setup_mth_vp.exe which is better than providing obscure downloadllinks ;) For me it throws an error about "out of memory". Just before things go wrong there's several fixne's from dwritetextlayout_HitTestTextRange. The hack below allowed me to start sthe program, though UI is a bit glitchy. @OP: Can you confirm that this is the same program you're talking about? For now I'll ad some info and mark this as dwrite bug. diff --git a/dlls/dwrite/layout.c b/dlls/dwrite/layout.c index aefb49296b3..64d77e8c3c1 100644 --- a/dlls/dwrite/layout.c +++ b/dlls/dwrite/layout.c @@ -3985,7 +3985,10 @@ static HRESULT WINAPI dwritetextlayout_HitTestTextRange(IDWriteTextLayout4 *ifac FIXME("%p, %u, %u, %f, %f, %p, %u, %p): stub\n", iface, textPosition, textLength, originX, originY, metrics, max_metricscount, actual_metricscount); - return E_NOTIMPL; + +*actual_metricscount=1; + + return 0;//E_NOTIMPL; } -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.