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

This commit is contained in:
Furkan Demir 2021-03-23 16:06:16 +02:00 committed by GitHub
parent 40656c70d1
commit b50b8f7b0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -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,