Remove logging.

This commit is contained in:
orangemug 2018-08-22 18:51:42 +01:00
parent 922ee616ec
commit 0e8c94af1e

View file

@ -191,11 +191,9 @@ export default class App extends React.Component {
handleKeyPress(e) {
if(navigator.platform.toUpperCase().indexOf('MAC') >= 0) {
if(e.metaKey && e.shiftKey && e.keyCode === 90) {
console.log("redo");
this.onRedo(e);
}
else if(e.metaKey && e.keyCode === 90) {
console.log("undo");
this.onUndo(e);
}
}