From aa14b4a606bb230a1b6e361f399515ee4f3bb071 Mon Sep 17 00:00:00 2001 From: RKrom Date: Wed, 24 Dec 2014 22:05:44 +0100 Subject: [PATCH] Fix for BUG-1724, forgot to remove some old code which should no longer be there. [skip ci] --- Greenshot/releases/additional_files/readme.txt.template | 8 +++++++- GreenshotPlugin/Core/WindowCapture.cs | 3 --- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Greenshot/releases/additional_files/readme.txt.template b/Greenshot/releases/additional_files/readme.txt.template index dc38ca38b..e61245240 100644 --- a/Greenshot/releases/additional_files/readme.txt.template +++ b/Greenshot/releases/additional_files/readme.txt.template @@ -5,9 +5,15 @@ Apply text and shapes to the screenshot. Offers capture of window, region or ful CHANGE LOG: +All details to our tickets can be found here: https://greenshot.atlassian.net + @DETAILVERSION@ -All details to our tickets can be found here: https://greenshot.atlassian.net +Bugs Resolved: +* BUG-1724 + + +1.2.4.9-RELEASE-b4b6c6546d12 Features: * Added the possibility to select the region to capture by using the keyboard, use the cursor keys to move the cursor (ctrl-key speeds up the movement) and the enter key to mark the start and ending. diff --git a/GreenshotPlugin/Core/WindowCapture.cs b/GreenshotPlugin/Core/WindowCapture.cs index 5a7edcf7c..4e5c42b4d 100644 --- a/GreenshotPlugin/Core/WindowCapture.cs +++ b/GreenshotPlugin/Core/WindowCapture.cs @@ -618,9 +618,6 @@ namespace GreenshotPlugin.Core { } capture.Image = CaptureRectangle(captureBounds); capture.Location = captureBounds.Location; - if (capture.CaptureDetails != null) { - ((Bitmap)capture.Image).SetResolution(capture.CaptureDetails.DpiX, capture.CaptureDetails.DpiY); - } return capture.Image == null ? null : capture; }