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; }