cancel text via doubleclick when in multiElement mode (#926)
This commit is contained in:
parent
f0e6f4dbb8
commit
95e726bd6f
@ -779,6 +779,12 @@ export class App extends React.Component<any, AppState> {
|
|||||||
private handleCanvasDoubleClick = (
|
private handleCanvasDoubleClick = (
|
||||||
event: React.MouseEvent<HTMLCanvasElement>,
|
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();
|
resetCursor();
|
||||||
|
|
||||||
const { x, y } = viewportCoordsToSceneCoords(
|
const { x, y } = viewportCoordsToSceneCoords(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user