summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/client/view/graph_view.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/client/view/graph_view.js b/src/client/view/graph_view.js
index 42c96965..75bd8cef 100644
--- a/src/client/view/graph_view.js
+++ b/src/client/view/graph_view.js
@@ -1227,6 +1227,10 @@ function GraphView(spec) {
layout.save();
layout.stop();
}
+ // remove fixed status, the fixed status is restored from the layout
+ graph.nodes().forEach(function (node) {
+ node.fixed = undefined;
+ });
layout = new_layout
.size([w, h])
.on("tick", pushRedraw)