Fabian Müntefering : dwrite: Added missing initialization of stretch value.
Module: wine Branch: master Commit: 6bab3afc34a5579cfd81092696b955d9caf6d5fd URL: http://source.winehq.org/git/wine.git/?a=commit;h=6bab3afc34a5579cfd81092696... Author: Fabian Müntefering <Cookiezzz97(a)gmx.de> Date: Mon May 27 18:41:24 2013 +0200 dwrite: Added missing initialization of stretch value. --- dlls/dwrite/layout.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/dlls/dwrite/layout.c b/dlls/dwrite/layout.c index d9e4a99..b77f29f 100644 --- a/dlls/dwrite/layout.c +++ b/dlls/dwrite/layout.c @@ -1021,6 +1021,7 @@ HRESULT create_textformat(const WCHAR *family_name, IDWriteFontCollection *colle This->format.weight = weight; This->format.style = style; This->format.size = size; + This->format.stretch = stretch; if (collection) {
participants (1)
-
Alexandre Julliard