浏览代码

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,