Skip to content
Snippets Groups Projects
Commit c0e2e1d6 authored by Maximilian Giller's avatar Maximilian Giller :squid:
Browse files

Adjusted key for clearing selection on background click

parent fee367d7
No related branches found
No related tags found
No related merge requests found
Pipeline #56932 passed
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment