From 009d5d11df019ad7b80c0a79c18c8eb5a189e9d3 Mon Sep 17 00:00:00 2001 From: RKrom Date: Fri, 23 Nov 2012 16:07:21 +0000 Subject: [PATCH] Fixed PixelOffset issue for the RectangleContainer, need to check what to do with the other containers. git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2304 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4 --- Greenshot/Drawing/RectangleContainer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Greenshot/Drawing/RectangleContainer.cs b/Greenshot/Drawing/RectangleContainer.cs index 335f52546..457c3e14f 100644 --- a/Greenshot/Drawing/RectangleContainer.cs +++ b/Greenshot/Drawing/RectangleContainer.cs @@ -45,7 +45,7 @@ namespace Greenshot.Drawing { graphics.SmoothingMode = SmoothingMode.HighQuality; graphics.InterpolationMode = InterpolationMode.HighQualityBicubic; graphics.CompositingQuality = CompositingQuality.HighQuality; - graphics.PixelOffsetMode = PixelOffsetMode.HighQuality; + graphics.PixelOffsetMode = PixelOffsetMode.None; int lineThickness = GetFieldValueAsInt(FieldType.LINE_THICKNESS); Color lineColor = GetFieldValueAsColor(FieldType.LINE_COLOR);