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

pull/3323/head
Furkan Demir 4 years ago committed by GitHub
parent 40656c70d1
commit b50b8f7b0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save