From 3fe58c3d446dbf5df9070ab15aa1ca17e1446027 Mon Sep 17 00:00:00 2001 From: Danila Poyarkov Date: Sat, 28 Feb 2026 01:14:51 +0300 Subject: [PATCH] Use native grab cursor for rotation handle --- src/composables/use-canvas-input.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/composables/use-canvas-input.ts b/src/composables/use-canvas-input.ts index 6d4cf2dff..4417e9fd1 100644 --- a/src/composables/use-canvas-input.ts +++ b/src/composables/use-canvas-input.ts @@ -384,8 +384,7 @@ export function useCanvasInput(canvasRef: Ref, store: store.state.panY ) ) { - cursor = - "url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M21 2v6h-6'/%3E%3Cpath d='M21 13a9 9 0 1 1-3-7.7L21 8'/%3E%3C/svg%3E\") 12 12, pointer" + cursor = 'grab' } } }