From ddae26df89dea5cdcff2f4dd6b35ca4974cd375c Mon Sep 17 00:00:00 2001 From: RKrom Date: Wed, 5 Dec 2012 19:27:53 +0000 Subject: [PATCH] Fixed leftovers git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2355 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4 --- Greenshot/Forms/CaptureForm.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Greenshot/Forms/CaptureForm.cs b/Greenshot/Forms/CaptureForm.cs index 7073dec14..e8a6ae10f 100644 --- a/Greenshot/Forms/CaptureForm.cs +++ b/Greenshot/Forms/CaptureForm.cs @@ -282,6 +282,7 @@ namespace Greenshot.Forms { // "Fade in" window windowAnimator = new RectangleAnimator(new Rectangle(cursorPos, Size.Empty), captureRect, calculateFrames(700), EasingType.Quintic, EasingMode.EaseOut); captureRect = Rectangle.Empty; + Invalidate(); break; case CaptureMode.Window: // Set the region capture mode @@ -292,6 +293,7 @@ namespace Greenshot.Forms { zoomAnimator = new RectangleAnimator(Rectangle.Empty, new Rectangle(int.MaxValue, int.MaxValue, 0, 0), calculateFrames(1000), EasingType.Quintic, EasingMode.EaseOut); VerifyZoomAnimation(cursorPos, false); captureRect = Rectangle.Empty; + Invalidate(); break; } selectedCaptureWindow = null;