Explorar o código

fix: showing `grabbing` cursor when holding `spacebar` (#6015)

David Luzar %!s(int64=2) %!d(string=hai) anos
pai
achega
6ab3f0eb74
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/components/App.tsx

+ 1 - 1
src/components/App.tsx

@@ -2120,7 +2120,7 @@ class App extends React.Component<AppProps, AppState> {
       }
       if (event.key === KEYS.SPACE && gesture.pointers.size === 0) {
         isHoldingSpace = true;
-        setCursor(this.canvas, CURSOR_TYPE.GRABBING);
+        setCursor(this.canvas, CURSOR_TYPE.GRAB);
         event.preventDefault();
       }