Merge pull request #95 from kaganjd/16-keyboard-shortcuts
Add keyboard shortcuts for 'run' and 'stop'
This commit is contained in:
commit
bd71041794
1 changed files with 8 additions and 0 deletions
|
@ -123,6 +123,14 @@ class IDEView extends React.Component {
|
|||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
this.props.saveProject();
|
||||
} else if (e.key === 'Enter' && e.shiftKey && ((e.metaKey && this.isMac) || (e.ctrlKey && !this.isMac))) {
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
this.props.stopSketch();
|
||||
} else if (e.key === 'Enter' && ((e.metaKey && this.isMac) || (e.ctrlKey && !this.isMac))) {
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
this.props.startSketch();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue