提交 aa7d2b6e 编写于 作者: Mr.奇淼('s avatar Mr.奇淼(

增加ctrl+z ctrl+y

上级 0ed3078f
......@@ -20,6 +20,20 @@ export default function(G6) {
this.graph.set('selectedItems', []);
this.graph.emit('afteritemselected', []);
}
if (e.ctrlKey == true && e.keyCode == 90) { //Ctrl+z
e.returnvalue = false;
if (this.graph.executeCommand) {
this.graph.executeCommand('undo', {});
}
}
if (e.ctrlKey == true && e.keyCode == 89) { //Ctrl+y
e.returnvalue = false;
if (this.graph.executeCommand) {
this.graph.executeCommand('redo', {});
}
}
},
onCanvasLeave(e) {
this.graph.set('focusGraphWrapper', false);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册