From d77e113a405b33cd12f7ac0d1042e1d3f0da16ed Mon Sep 17 00:00:00 2001 From: Cameron White Date: Sat, 21 Feb 2015 18:04:55 -0500 Subject: [PATCH] Fix #1420180 - Update the mouse cursor after finishing a selection. --- Pinta.Tools/Tools/SelectTool.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Pinta.Tools/Tools/SelectTool.cs b/Pinta.Tools/Tools/SelectTool.cs index 8d76b8dac..467b7abe5 100644 --- a/Pinta.Tools/Tools/SelectTool.cs +++ b/Pinta.Tools/Tools/SelectTool.cs @@ -127,6 +127,9 @@ protected override void OnMouseUp (DrawingArea canvas, ButtonReleaseEventArgs ar is_drawing = false; active_control = null; + + // Update the mouse cursor. + CheckHandlerCursor (point); } protected override void OnDeactivated(BaseTool newTool)