From 22c58f739cf6550f62e3953a4642e530d1d1e59c Mon Sep 17 00:00:00 2001 From: RKrom Date: Thu, 29 Nov 2012 08:16:13 +0000 Subject: [PATCH] Fixed last commit git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2332 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4 --- Greenshot/Forms/CaptureForm.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Greenshot/Forms/CaptureForm.cs b/Greenshot/Forms/CaptureForm.cs index 8a9bce577..0621b1eb5 100644 --- a/Greenshot/Forms/CaptureForm.cs +++ b/Greenshot/Forms/CaptureForm.cs @@ -454,11 +454,12 @@ namespace Greenshot.Forms { Invalidate(ZoomArea(lastPos, zoomAnimator.Current.Size)); Invalidate(ZoomArea(cursorPos, zoomAnimator.Next().Size)); - // TODO: Check what this should accomplish + // TODO: Move this to the Animator, but we need to check how to make sure we have an exact result. //if (zoomSize.Width < 200) { // zoomSize.Width += (220-zoomSize.Width)/5; // zoomSize.Height += (220-zoomSize.Height)/5; - //} } + //} + } // Force update "now" Update(); }