From f0e2ea54e09331d31e728d5ee548e734bcb9f982 Mon Sep 17 00:00:00 2001 From: Rob Shearman Date: Fri, 1 Dec 2006 15:04:49 +0000 Subject: [PATCH] ole32: The METAFILEPICT created by OleMetafilePictFromIconAndLabel should have its mapping mode be anisotropic, not isotropic. --- dlls/ole32/ole32_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ole32/ole32_main.c b/dlls/ole32/ole32_main.c index 87ff5392f77..b9c2b670904 100644 --- a/dlls/ole32/ole32_main.c +++ b/dlls/ole32/ole32_main.c @@ -102,7 +102,7 @@ HGLOBAL WINAPI OleMetafilePictFromIconAndLabel(HICON hIcon, LPOLESTR lpszLabel, ExtEscape(hdc, MFCOMMENT, strlen(szIconIndex)+1, szIconIndex, 0, NULL); } - mfp.mm = MM_ISOTROPIC; + mfp.mm = MM_ANISOTROPIC; mfp.xExt = mfp.yExt = 0; /* FIXME ? */ mfp.hMF = CloseMetaFile(hdc); if( !mfp.hMF )