Browse Source

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

David Luzar 2 năm trước cách đây
mục cha
commit
6ab3f0eb74
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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();
       }