mirror of
				https://github.com/excalidraw/excalidraw.git
				synced 2025-10-31 02:44:50 +01:00 
			
		
		
		
	fix: image insertion bugs (#7278)
This commit is contained in:
		| @@ -99,7 +99,7 @@ export const setCursorForShape = ( | ||||
|     interactiveCanvas.style.cursor = `url(${url}), auto`; | ||||
|   } else if (!["image", "custom"].includes(appState.activeTool.type)) { | ||||
|     interactiveCanvas.style.cursor = CURSOR_TYPE.CROSSHAIR; | ||||
|   } else { | ||||
|   } else if (appState.activeTool.type !== "image") { | ||||
|     interactiveCanvas.style.cursor = CURSOR_TYPE.AUTO; | ||||
|   } | ||||
| }; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 David Luzar
					David Luzar