From ea20ead07e273471ff5d9a1de05c34545dbe4183 Mon Sep 17 00:00:00 2001 From: RKrom Date: Mon, 11 Mar 2013 11:50:52 +0000 Subject: [PATCH] Removed a Image-cloning call which wasn't needed. git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2530 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4 --- Greenshot/Drawing/Filters/PixelizationFilter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Greenshot/Drawing/Filters/PixelizationFilter.cs b/Greenshot/Drawing/Filters/PixelizationFilter.cs index daf68e587..14fc79dfb 100644 --- a/Greenshot/Drawing/Filters/PixelizationFilter.cs +++ b/Greenshot/Drawing/Filters/PixelizationFilter.cs @@ -51,7 +51,7 @@ namespace Greenshot.Drawing.Filters { using (BitmapBuffer bbbDest = new BitmapBuffer(applyBitmap, rect)) { bbbDest.Lock(); - using (BitmapBuffer bbbSrc = new BitmapBuffer(applyBitmap, rect)) { + using (BitmapBuffer bbbSrc = new BitmapBuffer(applyBitmap, rect, false)) { bbbSrc.Lock(); List colors = new List(); int halbPixelSize = pixelSize / 2;