diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/view/graph_view.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/view/graph_view.js b/src/client/view/graph_view.js index 1c4f6334..3d39c03f 100644 --- a/src/client/view/graph_view.js +++ b/src/client/view/graph_view.js @@ -277,7 +277,7 @@ function GraphView(spec) { graph.links_rm([that.link]); }); view.edge_info.show(d); - selection.update([src, dst], d3.event.ctrlKey); + selection.update([src, dst], d3.event.shiftKey); }); link.attr("class", function(d, i){ @@ -410,7 +410,7 @@ function GraphView(spec) { } if (!temporary) { svgInput.enable(this, d, nodeTextX(d)); - selection.update([d], d3.event.ctrlKey); + selection.update([d], d3.event.shiftKey); showNodeInfo(graph.find_node__by_id(this.parentNode.id)); } d3.event.stopPropagation(); @@ -473,7 +473,7 @@ function GraphView(spec) { return; } d3.event.stopPropagation(); - selection.update([d], d3.event.ctrlKey); + selection.update([d], d3.event.shiftKey); if(!temporary) { showNodeInfo(d); } |
