diff --git a/src/editor/js/components/editor.tsx b/src/editor/js/components/editor.tsx index cbabc024e9a72807ef78949492e7ae23df4afe9f..979ed7122f724d1eb04e30892fffb70fc0a5791c 100644 --- a/src/editor/js/components/editor.tsx +++ b/src/editor/js/components/editor.tsx @@ -196,7 +196,7 @@ export class Editor extends React.PureComponent<propTypes, stateTypes> { } // Just deselect if shift key is pressed - if (this.state.keys["Shift"]) { + if (this.state.keys["Control"]) { this.selectNode(undefined); return; } @@ -565,7 +565,7 @@ export class Editor extends React.PureComponent<propTypes, stateTypes> { <hr /> <ul className="instructions"> <li>Click background to create node</li> - <li>SHIFT+Click background to clear selection</li> + <li>CTRL+Click background to clear selection</li> <li>Click node to select and edit</li> <li>CTRL+Click node to delete</li> <li>CTRL+Click link to delete</li>