فهرست منبع

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

David Luzar 2 سال پیش
والد
کامیت
6ab3f0eb74
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  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();
       }