Fix for BUG-1724, forgot to remove some old code which should no longer be there. [skip ci]

This commit is contained in:
RKrom 2014-12-24 22:05:44 +01:00
parent b4b6c6546d
commit aa14b4a606
2 changed files with 7 additions and 4 deletions

View file

@ -5,9 +5,15 @@ Apply text and shapes to the screenshot. Offers capture of window, region or ful
CHANGE LOG: CHANGE LOG:
All details to our tickets can be found here: https://greenshot.atlassian.net
@DETAILVERSION@ @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: 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. * 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.

View file

@ -618,9 +618,6 @@ namespace GreenshotPlugin.Core {
} }
capture.Image = CaptureRectangle(captureBounds); capture.Image = CaptureRectangle(captureBounds);
capture.Location = captureBounds.Location; capture.Location = captureBounds.Location;
if (capture.CaptureDetails != null) {
((Bitmap)capture.Image).SetResolution(capture.CaptureDetails.DpiX, capture.CaptureDetails.DpiY);
}
return capture.Image == null ? null : capture; return capture.Image == null ? null : capture;
} }