Fix noverlap error

master
Rohan Vazarkar 2018-08-03 14:08:20 -04:00
parent a7cf9998a6
commit 78827e61cd
1 changed files with 1 additions and 2 deletions

View File

@ -1534,11 +1534,10 @@ export default class GraphContainer extends Component {
var noverlapListener = sigmaInstance.configNoverlap({});
noverlapListener.bind("stop", function(event) {
noverlapListener.bind("stop", event => {
emitter.emit("updateLoadingText", "Done!");
this.lockScale();
sigma.canvas.edges.autoCurve(sigmaInstance);
sigmaInstance.settings("scalingMode","fixedScaling");
setTimeout(function() {
emitter.emit("showLoadingIndicator", false);
}, 1500);