fix: cursor being set wrong
This commit is contained in:
parent
57064e71c7
commit
340271f14b
1 changed files with 1 additions and 1 deletions
|
|
@ -77,7 +77,7 @@ function Canvas() {
|
|||
|
||||
const updateCssCursor = useCallback(() => {
|
||||
const cursorMapping: Partial<Record<Tool, string>> = {
|
||||
hand: dragging ? "grabbing" : "grab",
|
||||
hand: dragging ? "grab" : "grabbing",
|
||||
zoom: holdingAlt ? "zoom-out" : "zoom-in",
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue