1
0
mirror of https://github.com/excalidraw/excalidraw.git synced 2024-11-02 03:25:53 +01:00

fix: frame name not editable on dbl-click (#7037)

This commit is contained in:
David Luzar 2023-09-25 16:54:23 +02:00 committed by GitHub
parent 556175558a
commit 4765f5536e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1086,7 +1086,7 @@ class App extends React.Component<AppProps, AppState> {
cursor: CURSOR_TYPE.MOVE,
pointerEvents: this.state.viewModeEnabled
? POINTER_EVENTS.disabled
: POINTER_EVENTS.inheritFromUI,
: POINTER_EVENTS.enabled,
}}
onPointerDown={(event) => this.handleCanvasPointerDown(event)}
onWheel={(event) => this.handleWheel(event)}