From cba4e5c87e42ef9bb5585d77d1fdc114e0a15c40 Mon Sep 17 00:00:00 2001 From: unsettledgames <47360416+unsettledgames@users.noreply.github.com> Date: Wed, 4 Mar 2020 12:49:20 +0100 Subject: [PATCH] Fixed a bug that caused the cursor of the rect selection not to reset after panning --- js/_updateCursor.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/_updateCursor.js b/js/_updateCursor.js index 9c3e300..413df05 100644 --- a/js/_updateCursor.js +++ b/js/_updateCursor.js @@ -33,4 +33,6 @@ function updateCursor () { if (currentTool == 'resize-brush' || currentTool == 'resize-eraser') canvasView.style.cursor = 'default'; + if (currentTool == 'rectselect') + canvasView.style.cursor = 'crosshair'; } \ No newline at end of file