From: Nikolay Sivov Subject: [PATCH 2/4] dwrite: Only invalidate lines if line spacing changed Message-Id: <1469436177-31178-2-git-send-email-nsivov@codeweavers.com> Date: Mon, 25 Jul 2016 11:42:55 +0300 In-Reply-To: <1469436177-31178-1-git-send-email-nsivov@codeweavers.com> References: <1469436177-31178-1-git-send-email-nsivov@codeweavers.com> Signed-off-by: Nikolay Sivov --- dlls/dwrite/layout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/dwrite/layout.c b/dlls/dwrite/layout.c index 67f6fe2..09fe360 100644 --- a/dlls/dwrite/layout.c +++ b/dlls/dwrite/layout.c @@ -3661,7 +3661,7 @@ static HRESULT WINAPI dwritetextlayout3_SetLineSpacing(IDWriteTextLayout3 *iface return hr; if (changed) - This->recompute = RECOMPUTE_EVERYTHING; + This->recompute = RECOMPUTE_LINES; return S_OK; } -- 2.8.1