diff options
| author | Alon Levy <alon@pobox.com> | 2015-04-13 13:11:50 +0200 |
|---|---|---|
| committer | Alon Levy <alon@pobox.com> | 2015-04-13 13:11:50 +0200 |
| commit | b573087b299ead1ce60999f16f1ee0efaaeb6d48 (patch) | |
| tree | 2e2efc1547d3de62a5962db58457c587bb5addae /src/client/view/graph_view.js | |
| parent | f11b383ad2d47e6a06487f345095b8d0c67220ba (diff) | |
client: fix regression with temporary graph appearance: fixes #481
Diffstat (limited to 'src/client/view/graph_view.js')
| -rw-r--r-- | src/client/view/graph_view.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/view/graph_view.js b/src/client/view/graph_view.js index 9ab541ac..f6afb1d5 100644 --- a/src/client/view/graph_view.js +++ b/src/client/view/graph_view.js @@ -1070,7 +1070,7 @@ function GraphView(spec) { link = vis.selectAll("path.link"), link_text = vis.selectAll(".linklabel"), node_text = vis.selectAll("g.nodetext"), - bubble_radius = selection.is_empty() || temporary ? gv.bubble_radius : selection_outer_radius; + bubble_radius = temporary ? 0 : gv.bubble_radius; if (temporary) { // XXX convert to a layout |
