cancel text via doubleclick when in multiElement mode (#926)

This commit is contained in:
David Luzar 2020-03-12 18:31:53 +01:00 committed by GitHub
parent f0e6f4dbb8
commit 95e726bd6f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -779,6 +779,12 @@ export class App extends React.Component<any, AppState> {
private handleCanvasDoubleClick = (
event: React.MouseEvent<HTMLCanvasElement>,
) => {
// case: double-clicking with arrow/line tool selected would both create
// text and enter multiElement mode
if (this.state.multiElement) {
return;
}
resetCursor();
const { x, y } = viewportCoordsToSceneCoords(