Fixed a bug that caused the cursor of the rect selection not to reset after panning

This commit is contained in:
unsettledgames 2020-03-04 12:49:20 +01:00
parent 11337b689b
commit cba4e5c87e

View File

@ -33,4 +33,6 @@ function updateCursor () {
if (currentTool == 'resize-brush' || currentTool == 'resize-eraser')
canvasView.style.cursor = 'default';
if (currentTool == 'rectselect')
canvasView.style.cursor = 'crosshair';
}