소스 검색

fix: disallow create text in viewMode on mobile (#3219)

Furkan Demir 4 년 전
부모
커밋
b50b8f7b0d
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      src/components/App.tsx

+ 1 - 2
src/components/App.tsx

@@ -1881,8 +1881,7 @@ class App extends React.Component<ExcalidrawProps, AppState> {
     }
 
     resetCursor(this.canvas);
-
-    if (!event[KEYS.CTRL_OR_CMD]) {
+    if (!event[KEYS.CTRL_OR_CMD] && !this.state.viewModeEnabled) {
       this.startTextEditing({
         sceneX,
         sceneY,