From de25dc42873684b6a5dcb761981a20e2400fa0ef Mon Sep 17 00:00:00 2001 From: RKrom Date: Mon, 21 May 2012 08:35:36 +0000 Subject: [PATCH] Setting some word export options to prevent wrong embedding. git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@1892 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4 --- GreenshotInterop/OfficeExport/WordExporter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GreenshotInterop/OfficeExport/WordExporter.cs b/GreenshotInterop/OfficeExport/WordExporter.cs index 6775f0a14..7b1dc7965 100644 --- a/GreenshotInterop/OfficeExport/WordExporter.cs +++ b/GreenshotInterop/OfficeExport/WordExporter.cs @@ -83,7 +83,7 @@ namespace Greenshot.Interop.Office { } private static void AddPictureToSelection(ISelection selection, string tmpFile) { - selection.InlineShapes.AddPicture(tmpFile, Type.Missing, Type.Missing, Type.Missing); + selection.InlineShapes.AddPicture(tmpFile, false, true, Type.Missing); selection.InsertAfter("\r\n"); }